diff --git a/packages/nc-gui-v2/components/smartsheet/Form.vue b/packages/nc-gui-v2/components/smartsheet/Form.vue index a29b7f2069..f32e90b15c 100644 --- a/packages/nc-gui-v2/components/smartsheet/Form.vue +++ b/packages/nc-gui-v2/components/smartsheet/Form.vue @@ -3,11 +3,16 @@ import type { Permission } from '~/composables/useUIPermission/rolePermissions' import { computed, inject } from '#imports' import { MetaInj } from '~/context' +const state = useGlobal() + const { isUIAllowed } = useUIPermission() const formState = reactive({ - heading: 'TestForm1', + heading: '', subheading: '', + submitAnotherForm: false, + showBlankForm: false, + emailMe: false, }) const isEditable = isUIAllowed('editFormView' as Permission) @@ -23,6 +28,8 @@ function addAllColumns() {} function removeAllColumns() {} function updateView() {} + +function submitForm() {}