From e4176f4ec42fa8e391b088d62deef051cdafaf23 Mon Sep 17 00:00:00 2001 From: Phil Hughes Date: Fri, 7 Oct 2016 11:20:22 +0100 Subject: Fixed some JS styling --- app/assets/javascripts/boards/components/board_sidebar.js.es6 | 2 +- app/assets/javascripts/boards/models/issue.js.es6 | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app/assets/javascripts/boards/components/board_sidebar.js.es6 b/app/assets/javascripts/boards/components/board_sidebar.js.es6 index 12f69f93279..8d217f0f573 100644 --- a/app/assets/javascripts/boards/components/board_sidebar.js.es6 +++ b/app/assets/javascripts/boards/components/board_sidebar.js.es6 @@ -34,7 +34,7 @@ new DueDateSelect(); new LabelsSelect(); new Sidebar(); - new Subscription('.subscription') + new Subscription('.subscription'); }); } else { $('.right-sidebar').getNiceScroll().remove(); diff --git a/app/assets/javascripts/boards/models/issue.js.es6 b/app/assets/javascripts/boards/models/issue.js.es6 index 9704274b886..03fd6c05d87 100644 --- a/app/assets/javascripts/boards/models/issue.js.es6 +++ b/app/assets/javascripts/boards/models/issue.js.es6 @@ -54,7 +54,7 @@ class ListIssue { milestone_id: this.milestone ? this.milestone.id : null, due_date: this.dueDate, assignee_id: this.assignee ? this.assignee.id : null, - label_ids: this.labels.map((label) => label.id ) + label_ids: this.labels.map( (label) => label.id ) } }; -- cgit v1.2.1