prettier linting fix

This commit is contained in:
Kyle Zhao 2018-10-22 14:18:26 -04:00
parent 37fa7775f1
commit 2cc195f3d9
1 changed files with 6 additions and 1 deletions

View File

@ -107,7 +107,12 @@ export default Ember.Controller.extend(
@computed("showAllAuthTokens", "model.user_auth_tokens")
authTokens(showAllAuthTokens, tokens) {
tokens.sort(
(a, b) => (a.is_active ? -1 : b.is_active ? 1 : b.seen_at.localeCompare(a.seen_at))
(a, b) =>
a.is_active
? -1
: b.is_active
? 1
: b.seen_at.localeCompare(a.seen_at)
);
return showAllAuthTokens