I have the below simple table displaying users and their roles. My nested repeat.for loops through a list of roles. My repeat.for=“role of rolesData” does not display my data. Can you tell me why not? It only works if I add the 3rd repeat.for inside the div tag.
<tbody>
<tr repeat.for="user of usersData">
<td>${user.name}</td>
<td>
<select>
<option repeat.for="role of rolesData">${role.name}</option>
</select>
</td>
</tr>
<div repeat.for="role of rolesData">
<tbody>