diff --git a/web/root/src/simulation.ts b/web/root/src/simulation.ts index c37821b..083885f 100644 --- a/web/root/src/simulation.ts +++ b/web/root/src/simulation.ts @@ -108,7 +108,7 @@ export class FaState { toString(): string { if (!this.repr) { - this.repr = this.state + +" >" + this.input.substring(this.position); + this.repr = this.state + " >" + this.input.substring(this.position); } return this.repr; }