[#6066] updated text field validation message

This commit is contained in:
Gani Georgiev
2024-12-09 12:24:12 +02:00
parent 9747f46c1d
commit 9efd68ff4c
31 changed files with 92 additions and 91 deletions
@@ -683,7 +683,8 @@
placeholder={!isLoading && !CommonHelper.isEmpty(idField?.autogeneratePattern)
? "Leave empty to auto generate..."
: ""}
minlength={idField?.min}
minlength={idField?.min || null}
maxlength={idField?.max || null}
readonly={!isNew}
bind:value={record.id}
/>