mirror of
https://gitlab.com/bramw/baserow.git
synced 2025-04-15 09:34:13 +00:00
Lint fix after the vuelidate merge.
This commit is contained in:
parent
a56061b6cc
commit
88f97de930
2 changed files with 6 additions and 6 deletions
enterprise/web-frontend/modules/baserow_enterprise
|
@ -178,6 +178,9 @@ const alphanumericDotDashUnderscore = helpers.regex(/^[a-zA-Z0-9._-]*$/)
|
|||
export default {
|
||||
name: 'SamlSettingsForm',
|
||||
mixins: [authProviderForm],
|
||||
setup() {
|
||||
return { v$: useVuelidate({ $lazy: true }) }
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
allowedValues: [
|
||||
|
@ -197,9 +200,6 @@ export default {
|
|||
},
|
||||
}
|
||||
},
|
||||
setup() {
|
||||
return { v$: useVuelidate({ $lazy: true }) }
|
||||
},
|
||||
computed: {
|
||||
allSamlProviders() {
|
||||
return this.authProviders.saml || []
|
||||
|
|
|
@ -70,9 +70,6 @@ const includes = (array) => (value) => {
|
|||
export default {
|
||||
name: 'AggregationSeriesForm',
|
||||
mixins: [form],
|
||||
setup() {
|
||||
return { v$: useVuelidate({ $lazy: true }) }
|
||||
},
|
||||
props: {
|
||||
tableFields: {
|
||||
type: Array,
|
||||
|
@ -83,6 +80,9 @@ export default {
|
|||
required: true,
|
||||
},
|
||||
},
|
||||
setup() {
|
||||
return { v$: useVuelidate({ $lazy: true }) }
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
allowedValues: ['field_id', 'aggregation_type'],
|
||||
|
|
Loading…
Add table
Reference in a new issue