diff options
author | Ignatz <computer-freak94@gmx.de> | 2018-06-14 10:55:53 +0200 |
---|---|---|
committer | Ignatz <computer-freak94@gmx.de> | 2018-06-14 10:55:53 +0200 |
commit | 8ec60879dc1666e9129c5f690da06c2931135fc5 (patch) | |
tree | 3aee36adbdf4a50531cc0cb6fc69fc85d8e0b763 /client/components/boards/boardBody.js | |
parent | 848d8ac95d810bfedf1150c79341861e4a8157ce (diff) | |
download | wekan-8ec60879dc1666e9129c5f690da06c2931135fc5.tar.gz wekan-8ec60879dc1666e9129c5f690da06c2931135fc5.tar.bz2 wekan-8ec60879dc1666e9129c5f690da06c2931135fc5.zip |
hotfix public board
Diffstat (limited to 'client/components/boards/boardBody.js')
-rw-r--r-- | client/components/boards/boardBody.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/client/components/boards/boardBody.js b/client/components/boards/boardBody.js index 456bf9b3..dfe7b8d2 100644 --- a/client/components/boards/boardBody.js +++ b/client/components/boards/boardBody.js @@ -88,11 +88,13 @@ BlazeComponent.extendComponent({ isViewSwimlanes() { const currentUser = Meteor.user(); + if (!currentUser) return false; return (currentUser.profile.boardView === 'board-view-swimlanes'); }, isViewLists() { const currentUser = Meteor.user(); + if (!currentUser) return true; return (currentUser.profile.boardView === 'board-view-lists'); }, |