mirror of
https://github.com/grafana/grafana.git
synced 2025-02-13 00:55:47 -06:00
4 lines
106 B
TypeScript
4 lines
106 B
TypeScript
|
export function isSoloRoute(path: string): boolean {
|
||
|
return path?.toLowerCase().includes('/d-solo/');
|
||
|
}
|