From 30024352ad8f715a5d6e86ec1b62cabc05e1f389 Mon Sep 17 00:00:00 2001 From: karolina-siemieniuk-morawska Date: Tue, 30 Jan 2024 11:22:45 +0100 Subject: [PATCH] fix unsuccessful revert --- src/shared/services/json-store.service.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/shared/services/json-store.service.ts b/src/shared/services/json-store.service.ts index 98c77fc6..2639e08a 100644 --- a/src/shared/services/json-store.service.ts +++ b/src/shared/services/json-store.service.ts @@ -88,6 +88,7 @@ export class JsonStoreService { this.pushRevertPatchToHistory(path, 'add'); this.json = this.json.removeIn(path); + this.json$.next(this.json); this.keysStoreService.deletePath(path); }