From 9a1950253a9c40b667851fad0c136ec5e26f0aa2 Mon Sep 17 00:00:00 2001 From: Chirag Chhatrala Date: Tue, 10 Dec 2024 12:49:32 +0530 Subject: [PATCH] When form is focused mode make cover image screen --- client/pages/forms/[slug]/index.vue | 24 +++++++++++++++--------- 1 file changed, 15 insertions(+), 9 deletions(-) diff --git a/client/pages/forms/[slug]/index.vue b/client/pages/forms/[slug]/index.vue index 969dfbb66..892662a72 100644 --- a/client/pages/forms/[slug]/index.vue +++ b/client/pages/forms/[slug]/index.vue @@ -7,12 +7,14 @@
Form Cover Picture
@@ -59,14 +61,16 @@

- +
+ +
@@ -95,6 +99,8 @@ const slug = useRoute().params.slug const form = computed(() => formsStore.getByKey(slug)) const $t = useI18n() +const isFocused = computed(() => form.value.format === 'focused') + const openCompleteForm = ref(null) const passwordEntered = function (password) {