Skip to content

Commit

Permalink
fix incorrect code around markRaw invocation
Browse files Browse the repository at this point in the history
  • Loading branch information
kchobantonov committed Sep 30, 2024
1 parent 8c4b2f0 commit 4215a6f
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -366,11 +366,11 @@ export default defineComponent({
return {
validationMode: validationMode,
i18n: i18n ? markRaw(i18n) : i18n,
middleware: i18n ? markRaw(middleware) : middleware,
middleware: middleware ? markRaw(middleware) : middleware,
t,
mdAndUp,
vuetifyProps,
ajv: markRaw(ajv),
ajv: ajv ? markRaw(ajv) : ajv,
control,
styles,
appliedOptions,
Expand Down

0 comments on commit 4215a6f

Please sign in to comment.