Vue composition API #9

Merged
gator merged 3 commits from dev into master 2022-12-22 00:02:26 +01:00
Showing only changes of commit 2858eb2d27 - Show all commits

View File

@ -165,7 +165,7 @@
// draw 2d automaton from the last known generated board
const draw2dLast = async () => {
if (!store.canDraw) return;
if (store.loop) return store.draw2dNext(store.lastBoard);
if (store.loop) return draw2dNext(store.lastBoard);
else draw2d(store.lastBoard);
store.toggleStop();
};