Skip to content

Commit

Permalink
Specify type in TabularChunkedView iteration
Browse files Browse the repository at this point in the history
  • Loading branch information
dannon committed Nov 12, 2023
1 parent a240876 commit 2bd9115
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,9 @@ onMounted(() => {
<b-table-simple hover small striped>
<b-thead head-variant="dark">
<b-tr>
<b-th v-for="(column, index) in columns" :key="column">{{ column || `Column ${index + 1}` }}</b-th>
<b-th v-for="(column, index) in columns" :key="column">{{
column || `Column ${(index as number) + 1}`
}}</b-th>
</b-tr>
</b-thead>
<b-tbody>
Expand Down

0 comments on commit 2bd9115

Please sign in to comment.