Browse Source

Fix lint errors.

Lauri Ojansivu 7 năm trước cách đây
mục cha
commit
38a8d82735
1 tập tin đã thay đổi với 2 bổ sung2 xóa
  1. 2 2
      client/components/swimlanes/swimlanes.js

+ 2 - 2
client/components/swimlanes/swimlanes.js

@@ -10,7 +10,7 @@ function currentCardIsInThisList(listId, swimlaneId) {
     return currentCard && currentCard.listId === listId && currentCard.swimlaneId === swimlaneId;
   else
     return false;
-};
+}
 
 function initSortable(boardComponent, $listsDom) {
   // We want to animate the card details window closing. We rely on CSS
@@ -78,7 +78,7 @@ function initSortable(boardComponent, $listsDom) {
         MultiSelection.isActive() || !userIsMember());
     }
   });
-};
+}
 
 BlazeComponent.extendComponent({
   onRendered() {