From 7e3ace6476c3cd85c581c0b0e8354ecd77a2a202 Mon Sep 17 00:00:00 2001 From: anabellabuckvar <41971124+anabellabuckvar@users.noreply.github.com> Date: Wed, 1 May 2024 10:49:40 -0400 Subject: [PATCH] DOP-4549 re add inactive label --- api/handlers/slack.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/api/handlers/slack.ts b/api/handlers/slack.ts index 760bcd4f3..20f67376c 100644 --- a/api/handlers/slack.ts +++ b/api/handlers/slack.ts @@ -34,14 +34,14 @@ export async function buildEntitledGroupsList(entitlement: any, repoBranchesRepo const repoPath = `${repoOwner}/${repoName}/${branchName}`; let txt: string; if (!active) { - txt = `(!inactive) ${branchName}`; + txt = `(!inactive) ${repoPath}`; } else { - txt = branchName; + txt = repoPath; } options.push({ text: { type: 'plain_text', - text: repoPath, + text: txt, }, value: repoPath, });