1
0
Fork 0
mirror of https://gitlab.com/bramw/baserow.git synced 2025-04-07 22:35:36 +00:00

Merge branch 'fix-space-between-field-form-and-actions' into 'develop'

Fixed space between field form and actions

See merge request 
This commit is contained in:
Bram Wiepjes 2024-07-08 17:59:24 +00:00
commit 700294980b
8 changed files with 7 additions and 14 deletions

View file

@ -1,5 +1,5 @@
<template>
<div class="margin-bottom-2">
<div>
<FormGroup
:label="$t('fieldDateSubForm.dateFormatLabel')"
small-label

View file

@ -97,6 +97,7 @@
:name="values.name"
:default-values="defaultValues"
:database="database"
class="margin-bottom-2"
@validate="$v.$touch"
@suggested-field-name="handleSuggestedFieldName($event)"
/>

View file

@ -27,7 +27,7 @@
<template #error> {{ $t('error.requiredField') }}</template>
</FormGroup>
<FormGroup class="margin-bottom-2">
<FormGroup>
<Checkbox v-model="values.has_related_field">{{
$t('fieldLinkRowSubForm.hasRelatedFieldLabel')
}}</Checkbox>

View file

@ -4,7 +4,7 @@
small-label
:error="$v.values.number_decimal_places.$error"
:label="$t('fieldNumberSubForm.decimalPlacesLabel')"
class="margin-bottom-2"
:class="{ 'margin-bottom-2': allowSetNumberNegative }"
required
>
<Dropdown

View file

@ -1,5 +1,5 @@
<template>
<div class="margin-bottom-2">
<div>
<!--
this temporary message will be removed after the API password check support will
be implemented. I therefore thought it was okay to use some inline styles, for now.

View file

@ -1,11 +1,6 @@
<template>
<div class="rating-field-form">
<FormGroup
required
small-label
:label="$t('fieldRatingSubForm.color')"
class="margin-bottom-2"
>
<FormGroup required small-label :label="$t('fieldRatingSubForm.color')">
<a
ref="color-select"
:class="'rating-field__color' + ' background-color--' + values.color"
@ -19,7 +14,6 @@
required
small-label
:label="$t('fieldRatingSubForm.style')"
class="margin-bottom-2"
:error="$v.values.style.$error"
>
<Dropdown
@ -45,7 +39,6 @@
required
small-label
:label="$t('fieldRatingSubForm.maxValue')"
class="margin-bottom-2"
:error="$v.values.max_value.$error"
>
<Dropdown

View file

@ -7,7 +7,6 @@
small-label
required
:label="$t('fieldSingleSelectSubForm.optionsLabel')"
class="margin-bottom-2"
>
<FieldSelectOptions
ref="selectOptions"

View file

@ -1,5 +1,5 @@
<template>
<FormGroup class="margin-bottom-2">
<FormGroup>
<FormInput
ref="text_default"
v-model="values.text_default"