Skip to content

Commit b1f7eeb

Browse files
committed
fix: eslint
1 parent 0e0b7de commit b1f7eeb

File tree

2 files changed

+9
-10
lines changed

2 files changed

+9
-10
lines changed

frontend/src/views/dashboard/canvas/CanvasCore.vue

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,6 @@ const maxCell = ref(0)
129129
const positionBox = ref<Array<Array<{ el: boolean }>>>([])
130130
const coordinates = ref<CanvasCoord[]>([])
131131
const infoBox = ref()
132-
const historyPageX = ref<number | null>(null)
133132
134133
// Position data (non-reactive)
135134
let lastTask: (() => void) | undefined = undefined

frontend/src/views/ds/DatasourceForm.vue

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -274,15 +274,15 @@ const save = async (formEl: FormInstance | undefined) => {
274274
}
275275
} else {
276276
requestObj.tables = list
277-
const a = datasourceApi
278-
.add(requestObj)
279-
.then(() => {
280-
close()
281-
emit('refresh')
282-
})
283-
.finally(() => {
284-
saveLoading.value = false
285-
})
277+
// const a = datasourceApi
278+
// .add(requestObj)
279+
// .then(() => {
280+
// close()
281+
// emit('refresh')
282+
// })
283+
// .finally(() => {
284+
// saveLoading.value = false
285+
// })
286286
}
287287
}
288288
})

0 commit comments

Comments
 (0)