Skip to content

Commit b5a7231

Browse files
committed
Also allow grouping repos without remote together with repos with remote
1 parent af39dff commit b5a7231

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/src/ui/repositories-list/group-repositories.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ export const getGroupKey = (group: RepositoryListGroup) => {
4444
// Allow mixing together dotcom and enterprise repos when setting a group name manually
4545
return group.displayName ? `1:${group.displayName}` : `2:${group.host}`
4646
case 'other':
47-
return `3:other`
47+
return group.displayName ? `1:${group.displayName}` : `3:other`
4848
default:
4949
assertNever(group, `Unknown repository group kind ${kind}`)
5050
}

0 commit comments

Comments
 (0)