Skip to content

Commit 5f3280d

Browse files
committed
Fix ESLint issue
1 parent 3cde38e commit 5f3280d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/controllers/crates.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ export default class CratesController extends Controller {
1010
page = '1';
1111
per_page = 50;
1212
sort = 'alpha';
13-
alphabet = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'.split('');
13+
alphabet = [...'ABCDEFGHIJKLMNOPQRSTUVWXYZ'];
1414

1515
@readOnly('model.meta.total') totalItems;
1616
@pagination() pagination;

0 commit comments

Comments
 (0)