Skip to content

Commit

Permalink
ApiKeys fix (#5366)
Browse files Browse the repository at this point in the history
  • Loading branch information
chenriksson authored Jan 29, 2018
1 parent 58398c9 commit 9b79fd6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/NuGetGallery/Scripts/gallery/page-api-keys.js
Original file line number Diff line number Diff line change
Expand Up @@ -249,10 +249,10 @@
return this.PendingPackages().length;
}, this);
this.SelectedCountLabel = ko.pureComputed(function () {
return ko.unwrap(SelectedCount).toLocaleString()
return ko.unwrap(this.SelectedCount).toLocaleString()
+ ' of '
+ ko.unwrap(TotalCount).toLocaleString()
+ ' package' + (TotalCount == 1 ? '' : 's')
+ ko.unwrap(this.TotalCount).toLocaleString()
+ ' package' + (this.TotalCount == 1 ? '' : 's')
+ ' selected';
}, this);

Expand Down

0 comments on commit 9b79fd6

Please sign in to comment.