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

Commit 67ece43

Browse files
authored
Merge pull request #224 from github-for-unity/fixes/publish-view-default-again
Fix to include the OwnersDefaultText after user and organizations load
2 parents ff2344f + e5d25e7 commit 67ece43

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)