From f15dc564e6095082c593f9e43840a860af7d7915 Mon Sep 17 00:00:00 2001 From: Ashley McEntee Date: Mon, 24 Jun 2024 15:57:41 -0400 Subject: [PATCH] Rename Edit Permission to Contributor --- frontend/src/pages/projects/projectSharing/utils.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/pages/projects/projectSharing/utils.ts b/frontend/src/pages/projects/projectSharing/utils.ts index 9c3f0dd760..72effd0662 100644 --- a/frontend/src/pages/projects/projectSharing/utils.ts +++ b/frontend/src/pages/projects/projectSharing/utils.ts @@ -15,4 +15,4 @@ export const firstSubject = (roleBinding: RoleBindingKind): string => roleBinding.subjects[0]?.name || ''; export const roleLabel = (value: ProjectSharingRoleType): string => - value === ProjectSharingRoleType.ADMIN ? 'Admin' : 'Edit'; + value === ProjectSharingRoleType.ADMIN ? 'Admin' : 'Contributor';