Skip to content

Commit

Permalink
fix(table): mark onClick as required in TableAction
Browse files Browse the repository at this point in the history
  • Loading branch information
brc-dd committed Oct 3, 2023
1 parent fffe693 commit 6eed42b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/composables/Table.ts
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ export interface TableAction {
mode?: 'neutral' | 'mute' | 'info' | 'success' | 'warning' | 'danger'
label: string
labelMode?: 'neutral' | 'mute' | 'info' | 'success' | 'warning' | 'danger'
onClick?(): void
onClick(): void
}

export function useTable<
Expand Down

0 comments on commit 6eed42b

Please sign in to comment.