Skip to content

Commit

Permalink
Defer to activity bar for tool panel.
Browse files Browse the repository at this point in the history
  • Loading branch information
dannon committed Mar 13, 2024
1 parent 2cdeeab commit c50240c
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions client/src/entry/analysis/modules/Analysis.vue
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,11 @@ import CenterFrame from "./CenterFrame.vue";
import ActivityBar from "@/components/ActivityBar/ActivityBar.vue";
import HistoryIndex from "@/components/History/Index.vue";
import FlexPanel from "@/components/Panels/FlexPanel.vue";
import ToolPanel from "@/components/Panels/ToolPanel.vue";
import DragAndDropModal from "@/components/Upload/DragAndDropModal.vue";
const router = useRouter();
const showCenter = ref(false);
const { showToolbox, showPanels } = usePanels();
const { showPanels } = usePanels();
// methods
function hideCenter() {
Expand All @@ -39,9 +38,6 @@ onUnmounted(() => {
<template>
<div id="columns" class="d-flex">
<ActivityBar />
<FlexPanel v-if="showToolbox" side="left">
<ToolPanel />
</FlexPanel>
<div id="center" class="overflow-auto p-3 w-100">
<CenterFrame v-show="showCenter" id="galaxy_main" @load="onLoad" />
<router-view v-show="!showCenter" :key="$route.fullPath" class="h-100" />
Expand Down

0 comments on commit c50240c

Please sign in to comment.