Skip to content

Commit

Permalink
Fix import post-rebase.
Browse files Browse the repository at this point in the history
  • Loading branch information
dannon committed Dec 20, 2022
1 parent 7b52271 commit 7dd4608
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions client/src/entry/analysis/modules/AnalysisModule.vue
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import { getGalaxyInstance } from "@/app";
import HistoryIndex from "@/components/History/Index.vue";
import ToolBox from "@/components/Panels/ProviderAwareToolBox.vue";
import SidePanel from "@/components/Panels/SidePanel.vue";
import DragAndDropModal from "@/components/Upload/DragAndDropModal.vue";
import CenterFrame from "./CenterFrame.vue";
import DragAndDropModal from "components/Upload/DragAndDropModal";
import { useRoute, useRouter } from "vue-router/composables";
Expand Down Expand Up @@ -45,7 +45,6 @@ function getHistoryIndex() {
function getToolBox() {
return ToolBox;
}
function hideCenter() {
showCenter.value = false;
}
Expand All @@ -56,7 +55,11 @@ function onLoad() {

<template>
<div id="columns">
<SidePanel v-if="showPanels" side="left" :current-panel="getToolBox()" :current-panel-properties="toolBoxProperties" />
<SidePanel
v-if="showPanels"
side="left"
:current-panel="getToolBox()"
:current-panel-properties="toolBoxProperties" />
<div id="center">
<div class="center-container">
<CenterFrame v-show="showCenter" id="galaxy_main" @load="onLoad" />
Expand Down

0 comments on commit 7dd4608

Please sign in to comment.