diff --git a/public/app/features/dashboard/components/DashNav/DashNav.tsx b/public/app/features/dashboard/components/DashNav/DashNav.tsx index a764e366652..38a29c8eb58 100644 --- a/public/app/features/dashboard/components/DashNav/DashNav.tsx +++ b/public/app/features/dashboard/components/DashNav/DashNav.tsx @@ -106,6 +106,13 @@ class DashNav extends PureComponent { this.forceUpdate(); }; + onDashboardNameClick = () => { + this.props.updateLocation({ + query: { search: 'open' }, + partial: true, + }); + }; + addCustomContent(actions: DashNavButtonModel[], buttons: ReactNode[]) { actions.map((action, index) => { const Component = action.component; @@ -186,7 +193,7 @@ class DashNav extends PureComponent { )} - {dashboard.title} + {dashboard.title}
{this.renderLeftActionsButton()}