Skip to content
This repository was archived by the owner on Dec 5, 2024. It is now read-only.

Commit e5d25e7

Browse files
Fix to include the OwnersDefaultText afeter user and organizations load
1 parent ff2344f commit e5d25e7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/UnityExtension/Assets/Editor/GitHub.Unity/UI/PUblishView.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ private void PopulateView()
9191
.OrderBy(organization => organization.Login)
9292
.Select(organization => organization.Login);
9393

94-
owners = new[] { username }.Union(organizationLogins).ToArray();
94+
owners = new[] { OwnersDefaultText, username }.Union(organizationLogins).ToArray();
9595

9696
isBusy = false;
9797
});

0 commit comments

Comments
 (0)