auto-git:

[change] src/app/editor-store.ts
 [change] src/viewport-three/viewport-host.ts
This commit is contained in:
2026-03-31 03:42:16 +02:00
parent bbed6d8696
commit 57a4d45692
2 changed files with 64 additions and 2 deletions

View File

@@ -20,6 +20,7 @@ export interface EditorStoreState {
canUndo: boolean;
canRedo: boolean;
lastCommandLabel: string | null;
storageAvailable: boolean;
}
interface EditorStoreOptions {
@@ -212,7 +213,8 @@ export class EditorStore {
toolMode: this.toolMode,
canUndo: this.history.canUndo(),
canRedo: this.history.canRedo(),
lastCommandLabel: this.lastCommandLabel
lastCommandLabel: this.lastCommandLabel,
storageAvailable: this.storage !== null
};
}
}