summaryrefslogtreecommitdiffstats
path: root/client
diff options
context:
space:
mode:
authormvolo17 <marco.volo1@decathlon.com>2020-05-13 12:44:40 +0200
committerGitHub <noreply@github.com>2020-05-13 12:44:40 +0200
commitea0239538a68e225c867411a4f3e0d27c1583837 (patch)
tree94d1464cd22839bf5b44ce91ae543fd7b5dc5aa3 /client
parent2bb5a31fa4dffc412c9ac7bbe25205588fe5f28e (diff)
downloadwekan-ea0239538a68e225c867411a4f3e0d27c1583837.tar.gz
wekan-ea0239538a68e225c867411a4f3e0d27c1583837.tar.bz2
wekan-ea0239538a68e225c867411a4f3e0d27c1583837.zip
Swimlanes ID missing in new boards
when creating a new card in a new board there were and error on console. Result: card was not created. adding this parenthesis it works now. Just for info. without this change if you want to create a card you need to change view to swimlines and go back to list view
Diffstat (limited to 'client')
-rw-r--r--client/components/lists/listBody.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/client/components/lists/listBody.js b/client/components/lists/listBody.js
index 88f88db0..e0b3a66c 100644
--- a/client/components/lists/listBody.js
+++ b/client/components/lists/listBody.js
@@ -77,7 +77,7 @@ BlazeComponent.extendComponent({
else if (
Utils.boardView() === 'board-view-lists' ||
Utils.boardView() === 'board-view-cal' ||
- !Utils.boardView
+ !Utils.boardView()
)
swimlaneId = board.getDefaultSwimline()._id;