X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/38d27e9783f7f760cee84cc225e86144069848c4..a672dd5efb4c8ef394f61a7e7a5e513f80bf1427:/src/common/labels.ts diff --git a/src/common/labels.ts b/src/common/labels.ts index f534bd2b4e..e784cec0f5 100644 --- a/src/common/labels.ts +++ b/src/common/labels.ts @@ -11,6 +11,8 @@ export const resourceLabel = (type: string, subtype = '') => { case ResourceKind.PROJECT: if (subtype === "filter") { return "Filter group"; + } else if (subtype === "role") { + return "Group"; } return "Project"; case ResourceKind.PROCESS: @@ -21,6 +23,8 @@ export const resourceLabel = (type: string, subtype = '') => { return "Group"; case ResourceKind.VIRTUAL_MACHINE: return "Virtual Machine"; + case ResourceKind.WORKFLOW: + return "Workflow"; default: return "Unknown"; }