FPSMS-frontend
Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

isPoWorkbenchRoute.ts 257 B

1234567
  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. }