fix: dashboard empty state learn more link not working (#5287)

This commit is contained in:
Vikrant Gupta 2024-06-19 20:31:36 +05:30 committed by GitHub
parent a4e98e565d
commit f3c2fb0246
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -699,7 +699,16 @@ function DashboardsList(): JSX.Element {
New Dashboard
</Button>
</Dropdown>
<Button type="text" className="learn-more">
<Button
type="text"
className="learn-more"
onClick={(): void => {
window.open(
'https://signoz.io/docs/userguide/manage-dashboards?utm_source=product&utm_medium=dashboard-list-empty-state',
'_blank',
);
}}
>
Learn more
</Button>
<ArrowUpRight size={16} className="learn-more-arrow" />