Skip to content

Commit 7aeacc9

Browse files
committed
[automated] Apply ESLint and Oxfmt fixes
1 parent 717dde4 commit 7aeacc9

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

src/components/graph/DomWidgets.vue

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,11 @@ const widgetStates = computed(() => [...domWidgetStore.widgetStates.values()])
2929
// props — Vue watchers in DomWidget won't fire unless widgetState.pos gets
3030
// a new array identity. We force reassignment whenever these change so the
3131
// downstream watcher re-runs updatePosition / updateDomClipping.
32-
const lastViewport = { offsetX: Number.NaN, offsetY: Number.NaN, scale: Number.NaN }
32+
const lastViewport = {
33+
offsetX: Number.NaN,
34+
offsetY: Number.NaN,
35+
scale: Number.NaN
36+
}
3337
const lastSelected = {
3438
id: undefined as string | number | undefined,
3539
posX: 0,

0 commit comments

Comments
 (0)