File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -130,6 +130,7 @@ import {
130130 useInlineFieldsContainerStyle ,
131131} from ' ./composables/styles' ;
132132import inlineEmits from ' ./utils/emits' ;
133+ import { useBindingSettings } from ' ./composables/bindings' ;
133134
134135
135136const modelValue = defineModel <FieldValue >();
@@ -151,7 +152,7 @@ const timeOpened = ref<TimeOpened>(null);
151152
152153
153154// ------------------------------------------------ Binding Events & Props //
154- const bindingSettings = computed (() => settings );
155+ const bindingSettings = computed (() => useBindingSettings ( settings ) );
155156
156157
157158// ------------------------------------------------ Loading //
Original file line number Diff line number Diff line change @@ -118,6 +118,7 @@ import {
118118 useInlineFieldsContainerStyle ,
119119} from ' ./composables/styles' ;
120120import inlineEmits from ' ./utils/emits' ;
121+ import { useBindingSettings } from ' ./composables/bindings' ;
121122
122123
123124const modelValue = defineModel <FieldValue >();
@@ -139,7 +140,7 @@ const timeOpened = ref<TimeOpened>(null);
139140
140141
141142// ------------------------------------------------ Binding Events & Props //
142- const bindingSettings = computed (() => settings );
143+ const bindingSettings = computed (() => useBindingSettings ( settings ) );
143144
144145
145146// ------------------------------------------------ Loading //
You can’t perform that action at this time.
0 commit comments