From cae6fab4d846e9983096f17713cc11e3863c64ed Mon Sep 17 00:00:00 2001
From: Jonathan Weth <git@jonathanweth.de>
Date: Wed, 23 Apr 2025 12:03:04 +0200
Subject: [PATCH] Reformat

---
 src/DragGrid.vue | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/DragGrid.vue b/src/DragGrid.vue
index 36339bd..eb71fe1 100644
--- a/src/DragGrid.vue
+++ b/src/DragGrid.vue
@@ -144,7 +144,7 @@ export default {
   },
   methods: {
     positionAllowed(x, y, key) {
-      if (x <=0 || y <= 0) return false;
+      if (x <= 0 || y <= 0) return false;
       if (x > this.cols) return false;
       if (y > this.rows) return false;
 
-- 
GitLab