mirror of
https://gitlab.com/bramw/baserow.git
synced 2025-04-07 06:15:36 +00:00
Final validation and styling fixes
This commit is contained in:
parent
ff6a0880e2
commit
dcf7ba3852
4 changed files with 8 additions and 6 deletions
enterprise/web-frontend/modules/baserow_enterprise/pages/login
web-frontend/modules
|
@ -17,6 +17,7 @@
|
|||
:label="$t('field.emailAddress')"
|
||||
required
|
||||
:error="fieldHasErrors('email') || loginRequestError"
|
||||
class="margin-bottom-2"
|
||||
>
|
||||
<FormInput
|
||||
ref="email"
|
||||
|
|
|
@ -11,6 +11,7 @@
|
|||
ref="first_name"
|
||||
v-model="values.first_name"
|
||||
size="large"
|
||||
:error="fieldHasErrors('first_name')"
|
||||
@blur="$v.values.first_name.$touch()"
|
||||
></FormInput>
|
||||
|
||||
|
|
|
@ -5,6 +5,7 @@
|
|||
:error="fieldHasErrors('name')"
|
||||
required
|
||||
small-label
|
||||
class="margin-bottom-2"
|
||||
>
|
||||
<template #label>
|
||||
<i class="iconoir-text"></i> {{ $t('tableForm.name') }}</template
|
||||
|
@ -15,14 +16,13 @@
|
|||
size="large"
|
||||
:error="fieldHasErrors('name')"
|
||||
:disabled="!creation"
|
||||
class="margin-bottom-2"
|
||||
@focus.once="$event.target.select()"
|
||||
@blur="$v.values.name.$touch()"
|
||||
>
|
||||
<template #error>
|
||||
{{ $t('error.requiredField') }}
|
||||
</template>
|
||||
</FormInput>
|
||||
<template #error>
|
||||
{{ $t('error.requiredField') }}
|
||||
</template>
|
||||
</FormGroup>
|
||||
<slot></slot>
|
||||
</form>
|
||||
|
|
|
@ -63,8 +63,8 @@
|
|||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div v-if="filename !== ''" class="control">
|
||||
<label class="control__label">{{
|
||||
<div v-if="filename !== ''" class="control margin-top-2">
|
||||
<label class="control__label control__label--small">{{
|
||||
$t('tableJSONImporter.encodingLabel')
|
||||
}}</label>
|
||||
<div class="control__elements">
|
||||
|
|
Loading…
Add table
Reference in a new issue