From 1037e1129725e99488d69a1b5fb381963c451739 Mon Sep 17 00:00:00 2001 From: Matt Hill Date: Wed, 13 Oct 2021 09:47:32 -0600 Subject: [PATCH] don't delete observables whose value is undefined --- client/lib/store.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/client/lib/store.ts b/client/lib/store.ts index e8c229d..d8cabd0 100644 --- a/client/lib/store.ts +++ b/client/lib/store.ts @@ -152,8 +152,6 @@ export class Store { if (path.includes(revisionPath) || revisionPath.includes(path)) { const val = getValueByPointer(this.cache.data, path) - if (val === undefined) return kill(path) - this.watchedNodes[path].next(val) } })