Skip to content

Commit

Permalink
format code
Browse files Browse the repository at this point in the history
  • Loading branch information
dmstern committed Nov 26, 2018
1 parent aa2d63b commit 4b624dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/PackageList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ export default class Packages extends Vue {
}
return item.matchesPattern(args.query);
})
.sort((a, b) => a.time.modified < b.time.modified ? 1 : -1);
.sort((a, b) => (a.time.modified < b.time.modified ? 1 : -1));
},
);
}
Expand Down

0 comments on commit 4b624dd

Please sign in to comment.