Skip to content

Commit

Permalink
Lint fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
adamlaki committed Oct 29, 2023
1 parent d377eb6 commit c1f7a57
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions src/_includes/partial/card/data-table.html
Original file line number Diff line number Diff line change
Expand Up @@ -107,8 +107,7 @@ <h2 class="app-card__title">{{ dataTable.title }}</h2>
type="checkbox"
value="1"
name="select-all"
x-model="selectAll"
/>
x-model="selectAll" />
</label>
</th>
<th>Image</th>
Expand Down Expand Up @@ -140,7 +139,9 @@ <h2 class="app-card__title">{{ dataTable.title }}</h2>
</thead>
<tbody>
<template x-if="!items">
<tr><td colspan="4"><i>Loading...</i></td></tr>
<tr>
<td colspan="4">Loading...</td>
</tr>
</template>
<template x-for="(item, index) in pagedItems" :key="item.id">
<tr>
Expand Down Expand Up @@ -173,7 +174,7 @@ <h2 class="app-card__title">{{ dataTable.title }}</h2>
</a>
</div>
</td>
</tr>
</tr>
</template>
</tbody>
</table>
Expand Down

0 comments on commit c1f7a57

Please sign in to comment.