From 9f3c43f839f4f57981839151ce0a416973b3394d Mon Sep 17 00:00:00 2001 From: Hiroki Sawano Date: Thu, 15 Dec 2022 16:18:08 +0900 Subject: [PATCH] fix(dashboard): Update owners of dashboard list after editing (#22383) --- superset-frontend/src/views/CRUD/dashboard/DashboardList.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/superset-frontend/src/views/CRUD/dashboard/DashboardList.tsx b/superset-frontend/src/views/CRUD/dashboard/DashboardList.tsx index b972e7f6e0a09..23b9543423b8f 100644 --- a/superset-frontend/src/views/CRUD/dashboard/DashboardList.tsx +++ b/superset-frontend/src/views/CRUD/dashboard/DashboardList.tsx @@ -184,6 +184,7 @@ function DashboardList(props: DashboardListProps) { url = '', certified_by = '', certification_details = '', + owners, } = json.result; return { ...dashboard, @@ -197,6 +198,7 @@ function DashboardList(props: DashboardListProps) { url, certified_by, certification_details, + owners, }; } return dashboard;