We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent af39dff commit b5a7231Copy full SHA for b5a7231
app/src/ui/repositories-list/group-repositories.ts
@@ -44,7 +44,7 @@ export const getGroupKey = (group: RepositoryListGroup) => {
44
// Allow mixing together dotcom and enterprise repos when setting a group name manually
45
return group.displayName ? `1:${group.displayName}` : `2:${group.host}`
46
case 'other':
47
- return `3:other`
+ return group.displayName ? `1:${group.displayName}` : `3:other`
48
default:
49
assertNever(group, `Unknown repository group kind ${kind}`)
50
}
0 commit comments