From 82a3a05b6ef1beb3db495edf9c341b29427105c5 Mon Sep 17 00:00:00 2001 From: Nathan Reese Date: Fri, 27 Sep 2024 14:14:55 -0600 Subject: [PATCH] fix issue with this being undefined --- .../dashboard_container/embeddable/dashboard_container.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/dashboard/public/dashboard_container/embeddable/dashboard_container.tsx b/src/plugins/dashboard/public/dashboard_container/embeddable/dashboard_container.tsx index 7ffe8143f72a43..f2b3117bdd7e0f 100644 --- a/src/plugins/dashboard/public/dashboard_container/embeddable/dashboard_container.tsx +++ b/src/plugins/dashboard/public/dashboard_container/embeddable/dashboard_container.tsx @@ -316,7 +316,7 @@ export class DashboardContainer lastSavedId: undefined, managed: false, }, - this.untilEmbeddableLoaded + (id: string) => this.untilEmbeddableLoaded(id) ); this.animatePanelTransforms$ = dashboardApi.animatePanelTransforms$; this.fullScreenMode$ = dashboardApi.fullScreenMode$;