Skip to content

Commit 162a4a1

Browse files
committed
fix double quote linting error
1 parent 09a08ed commit 162a4a1

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

app/controllers/keyword/index.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@ export default Controller.extend(PaginationMixin, {
1313

1414
currentSortBy: computed('sort', function() {
1515
if (this.get('sort') === 'downloads') {
16-
return "All Time Downloads";
16+
return 'All Time Downloads';
1717
} else if (this.get('sort') === 'recent-downloads') {
18-
return "Recent Downloads";
18+
return 'Recent Downloads';
1919
} else if (this.get('sort') === 'alpha') {
20-
return "Alphabetical";
20+
return 'Alphabetical';
2121
} else {
22-
return "Recent Downloads";
22+
return 'Recent Downloads';
2323
}
2424
}),
2525
});

0 commit comments

Comments
 (0)