Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
ui fix
  • Loading branch information
jtydhr88 committed Aug 10, 2025
commit 9b7b2593477a0cbf93add7adb808d94864044fb6
6 changes: 0 additions & 6 deletions src/components/graph/MiniMap.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,6 @@
<div
v-if="visible && initialized"
class="flex absolute bottom-[20px] right-[90px] z-[1000]"
:class="{
'bottom-[20px]': !bottomPanelStore.bottomPanelVisible,
'bottom-[280px]': bottomPanelStore.bottomPanelVisible
}"
>
<MiniMapPanel
v-if="showOptionsPanel"
Expand Down Expand Up @@ -62,13 +58,11 @@ import { onMounted, onUnmounted, ref, watch } from 'vue'

import { useMinimap } from '@/composables/useMinimap'
import { useCanvasStore } from '@/stores/graphStore'
import { useBottomPanelStore } from '@/stores/workspace/bottomPanelStore'

import MiniMapPanel from './MiniMapPanel.vue'

const minimap = useMinimap()
const canvasStore = useCanvasStore()
const bottomPanelStore = useBottomPanelStore()

const {
initialized,
Expand Down
Loading