Skip to content

Commit

Permalink
Remove unused vars and ignore placeholder funcs unused
Browse files Browse the repository at this point in the history
  • Loading branch information
wssheldon committed Nov 29, 2023
1 parent 3df2076 commit 2d263a0
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/dispatch/static/dispatch/src/case/GraphTab.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<script setup lang="ts">
import { Panel, VueFlow, isNode, useVueFlow, MarkerType } from "@vue-flow/core"
import { VueFlow, isNode, useVueFlow, MarkerType } from "@vue-flow/core"
import { Background } from "@vue-flow/background"
import { Controls } from "@vue-flow/controls"
import { MiniMap } from "@vue-flow/minimap"
Expand Down Expand Up @@ -156,17 +156,20 @@ function updatePos() {
/**
* toObject transforms your current graph data to an easily persist-able object
*/
// eslint-disable-next-line no-unused-vars
function logToObject() {
return console.log(toObject())
}
/**
* Resets the current viewpane transformation (zoom & pan)
*/
// eslint-disable-next-line no-unused-vars
function resetTransform() {
return setTransform({ x: 0, y: 0, zoom: 1 })
}
// eslint-disable-next-line no-unused-vars
function toggleClass() {
return (dark.value = !dark.value)
}
Expand Down

0 comments on commit 2d263a0

Please sign in to comment.