Skip to content
Snippets Groups Projects
Commit 7073cdc6 authored by Julian's avatar Julian
Browse files

Fix field validation bug

parent 83e8c97f
No related branches found
No related tags found
1 merge request!2Resolve "Implement basic functionality"
......@@ -71,6 +71,7 @@ export default {
newPositionValid = this.positionAllowed(x, y, element.key);
if (!newPositionValid) break;
}
if (!newPositionValid) break;
}
if (!newPositionValid) {
......@@ -99,6 +100,7 @@ export default {
newPositionValid = this.positionAllowed(x, y, element.key);
if (!newPositionValid) break;
}
if (!newPositionValid) break;
}
if (!newPositionValid) return;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment