From 6d6f2136bc971826f56e61b8079812c7a7f660d9 Mon Sep 17 00:00:00 2001 From: Jari Kolehmainen Date: Fri, 9 Apr 2021 11:11:25 +0300 Subject: [PATCH] fix Signed-off-by: Jari Kolehmainen --- src/main/cluster-manager.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/cluster-manager.ts b/src/main/cluster-manager.ts index c0ba24cc5d..047fb0ca95 100644 --- a/src/main/cluster-manager.ts +++ b/src/main/cluster-manager.ts @@ -14,7 +14,7 @@ import { catalogEntityRegistry } from "../common/catalog-entity-registry"; const clusterOwnerRef = "ClusterManager"; export class ClusterManager extends Singleton { - @observable.deep catalogSource: CatalogEntity[] = []; + catalogSource = observable.array([]); constructor(public readonly port: number) { super();