This is an automated email from the ASF dual-hosted git repository.
maximebeauchemin pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-superset.git
The following commit(s) were added to refs/heads/master by this push:
new 6b0ab21 fix dashboard links in welcome page (#6756)
6b0ab21 is described below
commit 6b0ab2100dc88dea64f69fad936df21a5e43d717
Author: Hugh A. Miles II <[email protected]>
AuthorDate: Fri Jan 25 08:20:00 2019 -0800
fix dashboard links in welcome page (#6756)
---
superset/assets/src/welcome/DashboardTable.jsx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/superset/assets/src/welcome/DashboardTable.jsx
b/superset/assets/src/welcome/DashboardTable.jsx
index e3ff252..a3d689a 100644
--- a/superset/assets/src/welcome/DashboardTable.jsx
+++ b/superset/assets/src/welcome/DashboardTable.jsx
@@ -71,7 +71,7 @@ class DashboardTable extends React.PureComponent {
{this.state.dashboards.map(o => (
<Tr key={o.id}>
<Td column="dashboard" value={o.dashboard_title}>
- {o.dashboard_title}
+ <a href={o.url}>{o.dashboard_title}</a>
</Td>
<Td column="creator" value={o.changed_by_name}>
{unsafe(o.creator)}