From 698afa42df0c8976e797a68dec8c8ee8f2dc9c89 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 896cfd28e..ccdf033aa 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)