mirror of
https://gitlab.com/bramw/baserow.git
synced 2025-04-14 00:59:06 +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"
|
class="error"
|
||||||
>
|
>
|
||||||
{{ $t('error.nameNotAllowed') }}
|
{{ $t('fieldForm.nameNotAllowed') }}
|
||||||
</div>
|
</div>
|
||||||
<div
|
<div
|
||||||
v-else-if="$v.values.name.$dirty && !$v.values.name.maxLength"
|
v-else-if="$v.values.name.$dirty && !$v.values.name.maxLength"
|
||||||
class="error"
|
class="error"
|
||||||
>
|
>
|
||||||
{{ $t('error.nameTooLong') }}
|
{{ $t('fieldForm.nameTooLong') }}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</FormElement>
|
</FormElement>
|
||||||
|
|
Loading…
Add table
Reference in a new issue