Skip to content

Commit

Permalink
TS fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
Smoren committed Mar 29, 2024
1 parent 85d1b58 commit 0024e1a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/hive-grid/hive-grid-row.vue
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ const classString = computed(() => getClassString(props.row, props.cssClass));
ref="row"
class="grid-row"
:class="[!colorAlternation || index % 2 === 0 ? 'even' : 'odd', classString]"
@click="rowClick(row as Record<string, unknown>)"
@click="rowClick(row as unknown as Record<string, unknown>)"
>
<slot :row-ref="row" />
</tr>
Expand Down

0 comments on commit 0024e1a

Please sign in to comment.