We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 09a08ed commit 162a4a1Copy full SHA for 162a4a1
app/controllers/keyword/index.js
@@ -13,13 +13,13 @@ export default Controller.extend(PaginationMixin, {
13
14
currentSortBy: computed('sort', function() {
15
if (this.get('sort') === 'downloads') {
16
- return "All Time Downloads";
+ return 'All Time Downloads';
17
} else if (this.get('sort') === 'recent-downloads') {
18
- return "Recent Downloads";
+ return 'Recent Downloads';
19
} else if (this.get('sort') === 'alpha') {
20
- return "Alphabetical";
+ return 'Alphabetical';
21
} else {
22
23
}
24
}),
25
});
0 commit comments