diff --git a/src/DragGrid.vue b/src/DragGrid.vue
index 36339bd6a04f865ffcf3b98b9660b8c847a56762..eb71fe1c81c218b482b7afabf784290d6874e8b5 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;