X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/77c5d854b58b46395c5db5531268494d40f27786..5c8a5dd07252ed2ac431c53fccc9e2fb649c3014:/src/routes/routes.ts diff --git a/src/routes/routes.ts b/src/routes/routes.ts index 528a037611..d7257b5124 100644 --- a/src/routes/routes.ts +++ b/src/routes/routes.ts @@ -25,7 +25,6 @@ export const Routes = { PROCESSES: `/processes/:id(${RESOURCE_UUID_PATTERN})`, FAVORITES: '/favorites', TRASH: '/trash', - PROCESS_LOGS: `/process-logs/:id(${RESOURCE_UUID_PATTERN})`, REPOSITORIES: '/repositories', SHARED_WITH_ME: '/shared-with-me', RUN_PROCESS: '/run-process', @@ -68,7 +67,7 @@ export const getResourceUrl = (uuid: string) => { export const getNavUrl = (uuid: string, config: FederationConfig) => { const path = getResourceUrl(uuid) || ""; - const cls = uuid.substr(0, 5); + const cls = uuid.substring(0, 5); if (cls === config.localCluster || extractUuidKind(uuid) === ResourceKind.USER || COLLECTION_PDH_REGEX.exec(uuid)) { return path; } else if (config.remoteHostsConfig[cls]) { @@ -95,8 +94,6 @@ export const getNavUrl = (uuid: string, config: FederationConfig) => { export const getProcessUrl = (uuid: string) => `/processes/${uuid}`; -export const getProcessLogUrl = (uuid: string) => `/process-logs/${uuid}`; - export const getGroupUrl = (uuid: string) => `/group/${uuid}`; export interface ResourceRouteParams { @@ -124,9 +121,6 @@ export const matchCollectionRoute = (route: string) => export const matchProcessRoute = (route: string) => matchPath(route, { path: Routes.PROCESSES }); -export const matchProcessLogRoute = (route: string) => - matchPath(route, { path: Routes.PROCESS_LOGS }); - export const matchSharedWithMeRoute = (route: string) => matchPath(route, { path: Routes.SHARED_WITH_ME });