1
0
Fork 0
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:
peter_baserow 2025-02-18 17:31:00 +00:00
parent a56061b6cc
commit 88f97de930
2 changed files with 6 additions and 6 deletions
enterprise/web-frontend/modules/baserow_enterprise
components/admin/forms
dashboard/components/data_source

View file

@ -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 || []

View file

@ -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'],