mirror of
https://gitlab.com/bramw/baserow.git
synced 2025-05-10 03:20:35 +00:00
Re-add blur event listeners
This commit is contained in:
parent
3080c78118
commit
abdbf94e67
16 changed files with 33 additions and 0 deletions
web-frontend/modules/database/components
|
@ -47,6 +47,7 @@
|
|||
:type="field.type"
|
||||
:error="fieldHasErrors(field.name)"
|
||||
:disabled="disabled"
|
||||
@blur="v$.values[field.name].$touch()"
|
||||
>
|
||||
</FormInput>
|
||||
<template #error>
|
||||
|
@ -67,6 +68,7 @@
|
|||
size="large"
|
||||
:error="fieldHasErrors('postgresql_port')"
|
||||
:disabled="disabled"
|
||||
@blur="v$.values.postgresql_port.$touch"
|
||||
>
|
||||
</FormInput>
|
||||
<template #error>
|
||||
|
|
|
@ -14,6 +14,7 @@
|
|||
size="large"
|
||||
:placeholder="$t('applicationForm.namePlaceholder')"
|
||||
@focus.once="$event.target.select()"
|
||||
@blur="v$.values.name.$touch"
|
||||
></FormInput>
|
||||
|
||||
<template #error>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue