Skip to content

Commit

Permalink
remove workflow search in sidebar
Browse files Browse the repository at this point in the history
  • Loading branch information
itisAliRH committed Feb 16, 2024
1 parent 3548c12 commit cf95c38
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 98 deletions.
4 changes: 1 addition & 3 deletions client/src/components/ActivityBar/ActivityBar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ import FlexPanel from "@/components/Panels/FlexPanel.vue";
import NotificationsPanel from "@/components/Panels/NotificationsPanel.vue";
import SettingsPanel from "@/components/Panels/SettingsPanel.vue";
import ToolPanel from "@/components/Panels/ToolPanel.vue";
import WorkflowPanel from "@/components/Panels/WorkflowPanel.vue";
const { config, isConfigLoaded } = useConfig();
Expand Down Expand Up @@ -151,7 +150,7 @@ function onToggleSidebar(toggle: string) {
:to="activity.to"
@click="onToggleSidebar()" />
<ActivityItem
v-else-if="['tools', 'workflows', 'visualizations'].includes(activity.id)"
v-else-if="['tools', 'visualizations'].includes(activity.id)"
:id="`activity-${activity.id}`"
:key="activity.id"
:icon="activity.icon"
Expand Down Expand Up @@ -193,7 +192,6 @@ function onToggleSidebar(toggle: string) {
</div>
<FlexPanel v-if="isSideBarOpen" side="left" :collapsible="false">
<ToolPanel v-if="isActiveSideBar('tools')" />
<WorkflowPanel v-else-if="isActiveSideBar('workflows')" />
<VisualizationPanel v-else-if="isActiveSideBar('visualizations')" />
<NotificationsPanel v-else-if="isActiveSideBar('notifications')" />
<SettingsPanel v-else-if="isActiveSideBar('settings')" />
Expand Down
95 changes: 0 additions & 95 deletions client/src/components/Panels/WorkflowPanel.vue

This file was deleted.

0 comments on commit cf95c38

Please sign in to comment.