From 62842db140b1c7a7f81b587c67df5e28631c49b9 Mon Sep 17 00:00:00 2001 From: Dariusz Olszewski Date: Sun, 10 Mar 2024 19:02:24 +0100 Subject: [PATCH] fix: lint Signed-off-by: Dariusz Olszewski --- src/components/Images.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Images.vue b/src/components/Images.vue index e028a7600..a4d819c1c 100644 --- a/src/components/Images.vue +++ b/src/components/Images.vue @@ -378,7 +378,7 @@ export default { // Single touch or mouse down --> dragging if (this.pointerCache.length === 1 && this.dragging && !this.zooming && this.zoomRatio > 1) { - const {clientX, clientY} = event + const { clientX, clientY } = event const newShiftX = this.shiftX + (clientX - this.dragX) const newShiftY = this.shiftY + (clientY - this.dragY)