From 6aa8c2e5fa4fb9b2b38d7ddeab81f9be54f75615 Mon Sep 17 00:00:00 2001 From: Dariusz Olszewski Date: Mon, 28 Aug 2023 23:14:42 +0200 Subject: [PATCH] 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 75bb3c579..1c38e4f84 100644 --- a/src/components/Images.vue +++ b/src/components/Images.vue @@ -296,7 +296,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)