File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed
packages/nuxt-base-layer/src/components/S Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 11# Changelog
22
3+ ## Upcoming
4+ * Fix date field empty value not saved as null
5+
6+
37## v2025.69 - 2025-08-13
48* Replace deprecated bitnami redis docker image with official redis image
59* Plugin ` markdownexport ` : Export reports as Markdown documents in ZIP format
Original file line number Diff line number Diff line change 11<template >
22 <s-text-field
33 :model-value =" props.modelValue"
4- @update:model-value =" emit('update:modelValue', $event)"
4+ @update:model-value =" emit('update:modelValue', $event || null )"
55 :disabled =" props.disabled"
66 :readonly =" props.readonly"
77 :rules =" rules"
88 prepend-inner-icon =" mdi-calendar"
99 spellcheck =" false"
10- :clearable =" props.readonly"
10+ :clearable =" ! props.readonly"
1111 @click:clear =" emit('update:modelValue', null)"
1212 @focus =" emit('focus', $event)"
1313 @blur =" emit('blur', $event)"
You can’t perform that action at this time.
0 commit comments