You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by vi...@apache.org on 2022/12/15 07:18:15 UTC

[superset] branch master updated: fix(dashboard): Update owners of dashboard list after editing (#22383)

This is an automated email from the ASF dual-hosted git repository.

villebro pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/superset.git


The following commit(s) were added to refs/heads/master by this push:
     new 9f3c43f839 fix(dashboard): Update owners of dashboard list after editing (#22383)
9f3c43f839 is described below

commit 9f3c43f839f4f57981839151ce0a416973b3394d
Author: Hiroki Sawano <hi...@gmail.com>
AuthorDate: Thu Dec 15 16:18:08 2022 +0900

    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 b972e7f6e0..23b9543423 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;