diff options
Diffstat (limited to 'client/components')
-rw-r--r-- | client/components/swimlanes/swimlanes.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/client/components/swimlanes/swimlanes.js b/client/components/swimlanes/swimlanes.js index 4f6bcf76..f37e1e9c 100644 --- a/client/components/swimlanes/swimlanes.js +++ b/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() { |