Skip to content
This repository has been archived by the owner on Sep 30, 2024. It is now read-only.

Commit

Permalink
chore(DataTable): broaden type of table row to any
Browse files Browse the repository at this point in the history
  • Loading branch information
kelsos committed Dec 20, 2023
1 parent 18b9a7b commit 1c244bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/tables/DataTable.vue
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export interface TableColumn {
[key: string]: any;
}
type TableRow = Record<string, any>;
type TableRow = any;
export interface SortColumn {
column?: string;
Expand Down

0 comments on commit 1c244bc

Please sign in to comment.