From 5d67b8a9dc36123e6da2e5553959b34f6d8aea46 Mon Sep 17 00:00:00 2001 From: phil Date: Mon, 25 Mar 2024 10:12:02 +0530 Subject: [PATCH] Dashboard: fix plots --- .../dashboard/dashboard-page/dashboard-page.component.html | 4 ++-- src/app/openapi/models/Dashboard.ts | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/src/app/dashboard/dashboard-page/dashboard-page.component.html b/src/app/dashboard/dashboard-page/dashboard-page.component.html index 7eba515..662d26e 100644 --- a/src/app/dashboard/dashboard-page/dashboard-page.component.html +++ b/src/app/dashboard/dashboard-page/dashboard-page.component.html @@ -26,8 +26,8 @@ Plot diff --git a/src/app/openapi/models/Dashboard.ts b/src/app/openapi/models/Dashboard.ts index a80dad5..7b62095 100644 --- a/src/app/openapi/models/Dashboard.ts +++ b/src/app/openapi/models/Dashboard.ts @@ -11,7 +11,8 @@ export type Dashboard = { html?: (string | null); attachment?: (string | null); dfData?: Array; - plotData?: (string | null); + plotData?: null; + plotLayout?: (Record | null); notebook?: (string | null); expandedPanes?: (Array | null); sections?: (Array | null);