1
0
Fork 0
mirror of https://gitlab.com/bramw/baserow.git synced 2025-05-04 00:49:53 +00:00

Builder fix broken styles and other stuff

This commit is contained in:
Jérémie Pardou 2024-07-10 14:59:30 +00:00
parent 18492c596c
commit 9eb2fa4e73
9 changed files with 106 additions and 64 deletions
web-frontend/modules/builder/components/theme

View file

@ -7,6 +7,7 @@
>
<component
:is="themeConfigBlockType.component"
ref="themeConfigBlockForm"
:preview="preview"
:theme="theme"
:extra-args="extraArgs"
@ -41,5 +42,13 @@ export default {
default: true,
},
},
methods: {
reset() {
this.$refs.themeConfigBlockForm.reset()
},
isFormValid() {
return this.$refs.themeConfigBlockForm.isFormValid()
},
},
}
</script>