From 25e320dad03fb0a044a7906f46ca48027acac50e Mon Sep 17 00:00:00 2001 From: Roman Shandurenko Date: Thu, 20 Jul 2023 11:21:13 +0300 Subject: [PATCH] Always add folderTitle to dashboard object to avoid exception --- src/api.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/api.ts b/src/api.ts index 6dfa29a81..1a20e504f 100644 --- a/src/api.ts +++ b/src/api.ts @@ -126,6 +126,7 @@ class Client { ...dashboard, url: domain + dashboard.url, folderUrl: domain + dashboard.folderUrl, + folderTitle: dashboard.folderTitle ?? '', })); }