diff --git a/app/src/components/v-input/v-input.vue b/app/src/components/v-input/v-input.vue index 2c4612314d..be4a981f69 100644 --- a/app/src/components/v-input/v-input.vue +++ b/app/src/components/v-input/v-input.vue @@ -217,7 +217,7 @@ export default defineComponent({ function emitValue(event: InputEvent) { let value = (event.target as HTMLInputElement).value; - if (props.nullable === true && !value) { + if (props.nullable === true && value === '') { emit('update:modelValue', null); return; } diff --git a/app/src/interfaces/list/list.vue b/app/src/interfaces/list/list.vue index 09eeac9892..dc8722357b 100644 --- a/app/src/interfaces/list/list.vue +++ b/app/src/interfaces/list/list.vue @@ -15,7 +15,7 @@