Skip to content

Commit 6e66990

Browse files
authoredNov 8, 2024
fix(Table): missing type on props loadingState (#2551)
1 parent 56e28d8 commit 6e66990

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/runtime/components/data/Table.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@ export default defineComponent({
221221
default: false
222222
},
223223
loadingState: {
224-
type: Object as PropType<{ icon: string, label: string }>,
224+
type: Object as PropType<{ icon: string, label: string } | null>,
225225
default: () => config.default.loadingState
226226
},
227227
emptyState: {

0 commit comments

Comments
 (0)