From 315c52a328b1fcffa9176b4ba466baa634c51843 Mon Sep 17 00:00:00 2001 From: Yongjie Zhao Date: Tue, 27 Jul 2021 01:49:29 +0100 Subject: [PATCH] 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 335120e14f..c4be05d3b9 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;