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 15, 2024
1 parent 624703b commit 6038e0d
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 107 deletions.
12 changes: 0 additions & 12 deletions client/src/components/ActivityBar/ActivityBar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,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 @@ -149,16 +148,6 @@ function onToggleSidebar(toggle: string) {
:tooltip="activity.tooltip"
:to="activity.to"
@click="onToggleSidebar()" />
<ActivityItem
v-else-if="['tools', 'workflows'].includes(activity.id)"
:id="`activity-${activity.id}`"
:key="activity.id"
:icon="activity.icon"
:is-active="isActiveSideBar(activity.id)"
:title="activity.title"
:tooltip="activity.tooltip"
:to="activity.to"
@click="onToggleSidebar(activity.id)" />
<ActivityItem
v-else-if="activity.to"
:id="`activity-${activity.id}`"
Expand Down Expand Up @@ -192,7 +181,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')" />
<NotificationsPanel v-else-if="isActiveSideBar('notifications')" />
<SettingsPanel v-else-if="isActiveSideBar('settings')" />
</FlexPanel>
Expand Down
95 changes: 0 additions & 95 deletions client/src/components/Panels/WorkflowPanel.vue

This file was deleted.

0 comments on commit 6038e0d

Please sign in to comment.