diff --git a/client/src/components/Panels/Common/ToolSearch.vue b/client/src/components/Panels/Common/ToolSearch.vue index 2b94c93a53ae..31592c803dc9 100644 --- a/client/src/components/Panels/Common/ToolSearch.vue +++ b/client/src/components/Panels/Common/ToolSearch.vue @@ -1,6 +1,7 @@ diff --git a/client/src/components/Panels/ToolBox.vue b/client/src/components/Panels/ToolBox.vue index 29698f105af4..939903b549d7 100644 --- a/client/src/components/Panels/ToolBox.vue +++ b/client/src/components/Panels/ToolBox.vue @@ -135,8 +135,6 @@ const localPanel: ComputedRef | null> = c } }); -const sectionIds = computed(() => Object.keys(localPanel.value || {})); - const favWorkflows = computed(() => { const Galaxy = getGalaxyInstance(); const storedWorkflowMenuEntries = Galaxy && Galaxy.config.stored_workflow_menu_entries; @@ -298,10 +296,10 @@ function setButtonText() { :query-filter="queryFilter || undefined" :disable-filter="true" @onClick="onToolClick" /> -
+
diff --git a/client/src/components/Panels/ToolPanel.vue b/client/src/components/Panels/ToolPanel.vue index fa7f599df5ae..a478b08f7c7a 100644 --- a/client/src/components/Panels/ToolPanel.vue +++ b/client/src/components/Panels/ToolPanel.vue @@ -34,7 +34,8 @@ const emit = defineEmits<{ const arePanelsFetched = ref(false); const toolStore = useToolStore(); -const { currentPanelView, defaultPanelView, isPanelPopulated, loading, panel, panelViews } = storeToRefs(toolStore); +const { currentPanelView, defaultPanelView, isPanelPopulated, loading, panel, panelViews, currentPanel } = + storeToRefs(toolStore); const loadingView = ref(undefined); const query = ref(""); @@ -192,6 +193,9 @@ function onInsertWorkflowSteps(workflowId: string, workflowStepCount: number | u
+ + +