Skip to content

Commit 925e274

Browse files
committed
table row changes
1 parent c11cf70 commit 925e274

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "bootstrap-vue-wrapper",
3-
"version": "3.0.7",
3+
"version": "3.0.8",
44
"description": "Bootstrap 5 components in Vue3 wrapper.",
55
"module": "./dist/index.js",
66
"types": "./dist/index.d.ts",

src/components/bs-table/BsTable.vue

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,8 @@ export default defineComponent({
9191
* Item list
9292
*/
9393
items: {
94-
type: Array as PropType<Array<Record<string, unknown> & TableRowMeta>>,
94+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
95+
type: Array as PropType<Array<Record<string, any> & TableRowMeta>>,
9596
required: true,
9697
},
9798
/**

0 commit comments

Comments
 (0)