NestedFolders: Backend nested-dashboards route (#66955)

* NestedFolders: Add backend route for temp browse dashboards page

* tweak 'preview new ui' badge

* tweak 'preview new ui' badge
This commit is contained in:
Josh Hunt
2023-04-20 14:34:35 +01:00
committed by GitHub
parent bec18e390e
commit 78d7b6c0c9
2 changed files with 12 additions and 2 deletions
@@ -4,7 +4,7 @@ import { useAsync } from 'react-use';
import { locationUtil, NavModelItem } from '@grafana/data';
import { config, locationService } from '@grafana/runtime';
import { Badge, Link } from '@grafana/ui';
import { Badge, Link, Tooltip } from '@grafana/ui';
import { Page } from 'app/core/components/Page/Page';
import { FolderDTO } from 'app/types';
@@ -47,7 +47,11 @@ export const DashboardListPage = memo(({ match, location }: Props) => {
actions={
config.featureToggles.nestedFolders && (
<Link href="/nested-dashboards">
<Badge icon="folder" color="blue" text="Try WIP nested folders UI" />
<Tooltip content="New Browse Dashboards for nested folders is still under development and may be missing features">
<span>
<Badge icon="folder" color="blue" text="Preview new Browse Dashboards" />
</span>
</Tooltip>
</Link>
)
}