Vous ne pouvez pas sélectionner plus de 25 sujets
Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
|
- /** 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/");
- }
|