diff --git a/client/components/pages/forms/show/ExtraMenu.vue b/client/components/pages/forms/show/ExtraMenu.vue
index c1ca83b..af4b9cd 100644
--- a/client/components/pages/forms/show/ExtraMenu.vue
+++ b/client/components/pages/forms/show/ExtraMenu.vue
@@ -24,7 +24,25 @@
-
+
+ View form
+
+
+
@@ -133,7 +151,6 @@
-
@@ -185,4 +202,8 @@ const deleteForm = () => {
loadingDelete.value = false
})
}
+
+const showDraftFormWarningNotification = () => {
+ useAlert().warning('This form is currently in Draft mode and is not publicly accessible, You can change the form status on the edit form page.')
+}
diff --git a/client/pages/forms/[slug]/show.vue b/client/pages/forms/[slug]/show.vue
index 1ba1340..deaba9b 100644
--- a/client/pages/forms/[slug]/show.vue
+++ b/client/pages/forms/[slug]/show.vue
@@ -22,7 +22,22 @@
-
+
+
+
@@ -196,4 +211,8 @@ watch(() => form?.value?.id, (id) => {
const goBack = () => {
useRouter().push({name: 'home'})
}
+
+const showDraftFormWarningNotification = () => {
+ useAlert().warning('This form is currently in Draft mode and is not publicly accessible, You can change the form status on the edit form page.')
+}