Skip to content
This repository was archived by the owner on Aug 6, 2025. It is now read-only.

Commit 75dca40

Browse files
authored
sort the entitled branches list in the slack modal (#712)
1 parent e420fdf commit 75dca40

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

api/controllers/v1/slack.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ async function buildEntitledBranchList(entitlement: any, branchRepository: Branc
3838
}
3939
}
4040
}
41-
return entitledBranches;
41+
return entitledBranches.sort();
4242
}
4343

4444
function getQSString(qs: string) {

0 commit comments

Comments
 (0)