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

Commit

Permalink
Merge pull request #224 from github-for-unity/fixes/publish-view-defa…
Browse files Browse the repository at this point in the history
…ult-again

Fix to include the OwnersDefaultText after user and organizations load
  • Loading branch information
shana authored Aug 24, 2017
2 parents ff2344f + e5d25e7 commit 67ece43
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ private void PopulateView()
.OrderBy(organization => organization.Login)
.Select(organization => organization.Login);

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

isBusy = false;
});
Expand Down

0 comments on commit 67ece43

Please sign in to comment.