mirror of
https://github.com/grafana/grafana.git
synced 2025-02-12 08:35:43 -06:00
* Dashboard: Fix so panels are rendered correctly on SoloPanelPage * Refactor: narrows down the path
4 lines
106 B
TypeScript
4 lines
106 B
TypeScript
export function isSoloRoute(path: string): boolean {
|
|
return path?.toLowerCase().includes('/d-solo/');
|
|
}
|