mirror of
https://gitlab.com/bramw/baserow.git
synced 2025-04-07 06:15:36 +00:00
Fix missing field validation error messages
This commit is contained in:
parent
c99363a880
commit
04d0de5bfc
2 changed files with 9 additions and 2 deletions
changelog/entries/unreleased/bug
web-frontend/modules/database/components/field
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
"type": "bug",
|
||||
"message": "Fix missing field validation error messages",
|
||||
"issue_number": null,
|
||||
"bullet_points": [],
|
||||
"created_at": "2024-06-24"
|
||||
}
|
|
@ -34,13 +34,13 @@
|
|||
"
|
||||
class="error"
|
||||
>
|
||||
{{ $t('error.nameNotAllowed') }}
|
||||
{{ $t('fieldForm.nameNotAllowed') }}
|
||||
</div>
|
||||
<div
|
||||
v-else-if="$v.values.name.$dirty && !$v.values.name.maxLength"
|
||||
class="error"
|
||||
>
|
||||
{{ $t('error.nameTooLong') }}
|
||||
{{ $t('fieldForm.nameTooLong') }}
|
||||
</div>
|
||||
</div>
|
||||
</FormElement>
|
||||
|
|
Loading…
Add table
Reference in a new issue