Skip to content

Commit 3a6f240

Browse files
committed
fix the check because of the items type revert
1 parent 318950e commit 3a6f240

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/vue-vuetify/src/complex/MixedRenderer.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,7 @@ const createMixedRenderInfos = (
238238
: false;
239239
} else if (schema.type === 'array') {
240240
schema.items = schema.items ?? {};
241-
if (schema.items === true) {
241+
if ((schema.items as any) === true) {
242242
schema.items = {
243243
type: [
244244
'array',

0 commit comments

Comments
 (0)