FPSMS-frontend
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.
 
 

8 lignes
257 B

  1. /** True when the active route is PO Workbench (or nested). */
  2. export function isPoWorkbenchRoute(pathname: string | null): boolean {
  3. if (!pathname) {
  4. return false;
  5. }
  6. return pathname === "/po/workbench" || pathname.startsWith("/po/workbench/");
  7. }