diff --git a/components/MainSection.vue b/components/MainSection.vue
index 45f2d6b..dd49620 100644
--- a/components/MainSection.vue
+++ b/components/MainSection.vue
@@ -73,7 +73,8 @@
-
-
+ -->
-
+ /> -->
-
+ /> -->
-
+ > -->
@@ -209,10 +209,13 @@
diff --git a/pages/TaskDashboard.vue b/pages/TaskDashboard.vue
index c7af81d..9d5a923 100644
--- a/pages/TaskDashboard.vue
+++ b/pages/TaskDashboard.vue
@@ -1,5 +1,5 @@
-
+
diff --git a/stores/searchStore.ts b/stores/searchStore.ts
index ff14869..8d7a4c4 100644
--- a/stores/searchStore.ts
+++ b/stores/searchStore.ts
@@ -54,8 +54,12 @@ export const useSearchStore = defineStore("searchStore", {
searchSynonymForm: undefined as searchSynonymForm | undefined,
selectionFilterItems: [] as selectionFilterItems,
+ taskSchema:{} as {},
}),
getters: {
+ taskSchemaGetter(state) {
+ return state.taskSchema;
+ },
projectsGetter(state) {
return state.projects;
},
@@ -128,6 +132,9 @@ export const useSearchStore = defineStore("searchStore", {
},
},
actions: {
+ taskSchemaSetter( taskSchema = undefined) {
+ this.taskSchema = taskSchema;
+ },
SET_SELECTED_PROJECT(selectedProject = undefined) {
this.selectedProject = selectedProject;
},