diff --git a/app/src/components/v-input/v-input.vue b/app/src/components/v-input/v-input.vue index fe04090287..1485b9fe32 100644 --- a/app/src/components/v-input/v-input.vue +++ b/app/src/components/v-input/v-input.vue @@ -215,7 +215,7 @@ export default defineComponent({ } function trimIfEnabled() { - if (props.modelValue && props.trim) { + if (props.modelValue && props.trim && ['string', 'text'].includes(props.type)) { emit('update:modelValue', String(props.modelValue).trim()); } }