Skip to content

Commit 5732bb8

Browse files
kushthedudekushthedude
authored andcommitted
Remoal of extra parenthesis
1 parent 852d09a commit 5732bb8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/controllers/public.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export default Controller.extend({
99
}
1010
}),
1111
displayEndDate: computed('model.startsAtDate', 'model.endsAtDate', function() {
12-
return !(moment(this.model.startsAtDate).isSame(this.model.endsAtDate, 'minute'));
12+
return !moment(this.model.startsAtDate).isSame(this.model.endsAtDate, 'minute');
1313
}),
1414
actions: {
1515
toggleMenu() {

0 commit comments

Comments
 (0)