feat: refs #8638 add AWB field to travel and entry forms, update translations and styles #1620

Merged
pablone merged 7 commits from 8638-entryUpgradesForInvoiceInFixes into test 2025-03-24 12:52:12 +00:00
1 changed files with 1 additions and 1 deletions
Showing only changes of commit c5e1ebec82 - Show all commits

View File

@ -84,7 +84,7 @@ const mixinRules = [
...($attrs.rules ?? []),
(val) => {
const maxlength = $props.maxlength;
if (maxlength && +val.length > maxlength)
if (maxlength && +val?.length > maxlength)
return t(`maxLength`, { value: maxlength });
const { min, max } = vnInputRef.value.$attrs;
if (!min) return null;