Skip to content

Commit

Permalink
Fix resource index column (#525)
Browse files Browse the repository at this point in the history
  • Loading branch information
mPokornyETM authored Jun 25, 2023
1 parent 7a4699e commit 4b8fc8e
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -67,12 +67,12 @@ THE SOFTWARE.
<th>${%resources.table.column.action}</th>
</thead>
<tbody>
<j:forEach var="resource" items="${it.resources}">
<j:forEach var="resource" items="${it.resources}" varStatus="idx">
<tr data-resource-name="${resource.name}">
<!-- **************************************************************
Index
-->
<td>${i + 1}</td>
<td>${idx.index + 1}</td>

<!-- **************************************************************
Column with common resource data
Expand Down

0 comments on commit 4b8fc8e

Please sign in to comment.