This is an automated email from the ASF dual-hosted git repository.
yongjiezhao 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 315c52a fix: dashboard url error when edit slug (#15893)
315c52a is described below
commit 315c52a328b1fcffa9176b4ba466baa634c51843
Author: Yongjie Zhao <[email protected]>
AuthorDate: Tue Jul 27 01:49:29 2021 +0100
fix: dashboard url error when edit slug (#15893)
---
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 335120e..c4be05d 100644
--- a/superset-frontend/src/views/CRUD/dashboard/DashboardList.tsx
+++ b/superset-frontend/src/views/CRUD/dashboard/DashboardList.tsx
@@ -166,6 +166,7 @@ function DashboardList(props: DashboardListProps) {
slug = '',
json_metadata = '',
changed_on_delta_humanized,
+ url = '',
} = json.result;
return {
...dashboard,
@@ -176,6 +177,7 @@ function DashboardList(props: DashboardListProps) {
slug,
json_metadata,
changed_on_delta_humanized,
+ url,
};
}
return dashboard;