plural, stop

This commit is contained in:
Ali Gator 2022-12-04 18:47:20 +01:00
parent d602c83d3d
commit f7c6467941
2 changed files with 3 additions and 1 deletions

View File

@ -1,5 +1,5 @@
<template>
<MenuRow row-title="2D Cellular Automata">
<MenuRow row-title="2D Cellular Automaton">
<div class="form-field">
<label>Start from empty board</label>
<input

View File

@ -49,10 +49,12 @@ export const globalStore = defineStore("globalStore", {
this.draw1d = true;
},
toggleDraw2d() {
this.toggleStop();
this.canDraw = true;
this.draw2d = true;
},
toggleDraw2dLast() {
this.toggleStop();
this.canDraw = true;
this.draw2dLast = true;
},