mirror of
https://gitlab.com/bramw/baserow.git
synced 2025-04-04 21:25:24 +00:00
Fix admin page
This commit is contained in:
parent
922a77d88f
commit
0e190e3a2e
1 changed files with 6 additions and 0 deletions
|
@ -79,6 +79,7 @@ import { notifyIf } from '@baserow/modules/core/utils/error'
|
|||
import UserFilesModal from '@baserow/modules/core/components/files/UserFilesModal'
|
||||
import { UploadFileUserFileUploadType } from '@baserow/modules/core/userFileUploadTypes'
|
||||
import EnterpriseFeatures from '@baserow_enterprise/features'
|
||||
import { useVuelidate } from '@vuelidate/core'
|
||||
|
||||
export default {
|
||||
name: 'EnterpriseSettings',
|
||||
|
@ -94,6 +95,11 @@ export default {
|
|||
settings: 'settings/get',
|
||||
}),
|
||||
},
|
||||
setup() {
|
||||
return {
|
||||
v$: useVuelidate({ $lazy: true }),
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
async updateSettings(values) {
|
||||
this.v$.$touch()
|
||||
|
|
Loading…
Add table
Reference in a new issue