summaryrefslogtreecommitdiffstats
path: root/client/components/boards/boardBody.js
diff options
context:
space:
mode:
authorAndrés Manelli <andresmanelli@gmail.com>2018-04-16 14:33:53 -0300
committerAndrés Manelli <andresmanelli@gmail.com>2018-04-16 14:43:10 -0300
commite5995477b80a3c8e9fd423d14fd818a5b3ad5aa0 (patch)
tree420339982c4f9903e4f193ee19ac177a766ed330 /client/components/boards/boardBody.js
parentc12e003fd3ecc50bee64931bc19febee1b99c103 (diff)
downloadwekan-e5995477b80a3c8e9fd423d14fd818a5b3ad5aa0.tar.gz
wekan-e5995477b80a3c8e9fd423d14fd818a5b3ad5aa0.tar.bz2
wekan-e5995477b80a3c8e9fd423d14fd818a5b3ad5aa0.zip
Fix #1567
Diffstat (limited to 'client/components/boards/boardBody.js')
-rw-r--r--client/components/boards/boardBody.js10
1 files changed, 4 insertions, 6 deletions
diff --git a/client/components/boards/boardBody.js b/client/components/boards/boardBody.js
index aa7b6a75..456bf9b3 100644
--- a/client/components/boards/boardBody.js
+++ b/client/components/boards/boardBody.js
@@ -87,15 +87,13 @@ BlazeComponent.extendComponent({
},
isViewSwimlanes() {
- const currentBoardId = Session.get('currentBoard');
- const board = Boards.findOne(currentBoardId);
- return (board.view === 'board-view-swimlanes');
+ const currentUser = Meteor.user();
+ return (currentUser.profile.boardView === 'board-view-swimlanes');
},
isViewLists() {
- const currentBoardId = Session.get('currentBoard');
- const board = Boards.findOne(currentBoardId);
- return (board.view === 'board-view-lists');
+ const currentUser = Meteor.user();
+ return (currentUser.profile.boardView === 'board-view-lists');
},
openNewListForm() {