Fix redo issue

This commit is contained in:
HarelM
2024-02-04 16:37:47 +02:00
parent cb77c6b4e2
commit c84c7a7b96
2 changed files with 40 additions and 2 deletions

View File

@@ -19,10 +19,13 @@ export class RevisionStore {
}
addRevision(revision: StyleSpecification & {id: string}) {
//TODO: compare new revision style id with old ones
//and ensure that it is always the same id
// clear any "redo" revisions once a change is made
// and ensure current index is at end of list
this.revisions = this.revisions.slice(0, this.currentIdx + 1);
this.revisions.push(revision)
this.currentIdx++
//}
}
undo() {