From d2dbacbb31fb89383211ceb035c5c1842e88e034 Mon Sep 17 00:00:00 2001 From: Alireza Heidri Date: Tue, 12 Dec 2023 16:24:46 +0000 Subject: [PATCH] WorkflowListActions: delete unused codes in --- .../components/Workflow/WorkflowListActions.vue | 16 +--------------- 1 file changed, 1 insertion(+), 15 deletions(-) diff --git a/client/src/components/Workflow/WorkflowListActions.vue b/client/src/components/Workflow/WorkflowListActions.vue index fdd7402a534b..1c03e3c31ca9 100644 --- a/client/src/components/Workflow/WorkflowListActions.vue +++ b/client/src/components/Workflow/WorkflowListActions.vue @@ -2,18 +2,13 @@ import { library } from "@fortawesome/fontawesome-svg-core"; import { faPlus, faUpload } from "@fortawesome/free-solid-svg-icons"; import { FontAwesomeIcon } from "@fortawesome/vue-fontawesome"; -import { BButton, BModal } from "bootstrap-vue"; -import { ref } from "vue"; +import { BButton } from "bootstrap-vue"; import { useRouter } from "vue-router/composables"; -import WorkflowCreate from "@/components/Workflow/WorkflowCreate.vue"; - library.add(faPlus, faUpload); const router = useRouter(); -const showCreateModal = ref(false); - function navigateToImport() { router.push("/workflows/import"); } @@ -33,7 +28,6 @@ function navigateToOldCreate() { title="Create new workflow" variant="outline-primary" @click="navigateToOldCreate"> - Create @@ -49,13 +43,5 @@ function navigateToOldCreate() { Import - - - - - -