Skip to content

Commit d29de32

Browse files
Update empty and error vars
1 parent 64fa186 commit d29de32

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

src/plugin/VInlineSelect.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -183,8 +183,8 @@ const bindingDisplay = computed(() => {
183183
displayPrependInnerIconColor: props.displayPrependInnerIconColor,
184184
displayPrependInnerIconSize: props.displayPrependInnerIconSize,
185185
displayValue: displayValue.value,
186-
empty,
187-
error,
186+
empty: empty.value,
187+
error: error.value,
188188
field: 'v-text-field',
189189
underlineColor: settings.underlineColor,
190190
underlineStyle: settings.underlineStyle,

src/plugin/VInlineTextField.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -182,8 +182,8 @@ const bindingDisplay = computed(() => {
182182
displayPrependInnerIconColor: props.displayPrependInnerIconColor,
183183
displayPrependInnerIconSize: props.displayPrependInnerIconSize,
184184
displayValue: displayValue.value,
185-
empty,
186-
error,
185+
empty: empty.value,
186+
error: error.value,
187187
field: 'v-text-field',
188188
underlineColor: settings.underlineColor,
189189
underlineStyle: settings.underlineStyle,

src/plugin/VInlineTextarea.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -185,8 +185,8 @@ const bindingDisplay = computed(() => {
185185
displayPrependInnerIconColor: props.displayPrependInnerIconColor,
186186
displayPrependInnerIconSize: props.displayPrependInnerIconSize,
187187
displayValue: displayValue.value,
188-
empty,
189-
error,
188+
empty: empty.value,
189+
error: error.value,
190190
field: 'v-text-field',
191191
underlineColor: settings.underlineColor,
192192
underlineStyle: settings.underlineStyle,

0 commit comments

Comments
 (0)