Nie możesz wybrać więcej, niż 25 tematów
Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
|
1234567 |
- /** True when the active route is PO Workbench (or nested). */
- export function isPoWorkbenchRoute(pathname: string | null): boolean {
- if (!pathname) {
- return false;
- }
- return pathname === "/po/workbench" || pathname.startsWith("/po/workbench/");
- }
|