From f59bdec9a9d2efda053527a8afd20d77acee9817 Mon Sep 17 00:00:00 2001 From: Jari Kolehmainen Date: Thu, 3 Mar 2022 12:45:52 +0200 Subject: [PATCH] less any Signed-off-by: Jari Kolehmainen --- src/common/k8s-api/api-manager.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/k8s-api/api-manager.ts b/src/common/k8s-api/api-manager.ts index 59f004009f..f612dc4bb2 100644 --- a/src/common/k8s-api/api-manager.ts +++ b/src/common/k8s-api/api-manager.ts @@ -69,7 +69,7 @@ export class ApiManager { } @action - registerStore(store: KubeObjectStore, apis: KubeApi[] = [store.api]) { + registerStore(store: KubeObjectStore, apis: KubeApi[] = [store.api]) { apis.filter(Boolean).forEach(api => { if (api.apiBase) this.stores.set(api.apiBase, store); });