diff options
author | Lauri Ojansivu <x@xet7.org> | 2017-12-11 22:11:31 +0200 |
---|---|---|
committer | Lauri Ojansivu <x@xet7.org> | 2017-12-11 22:11:31 +0200 |
commit | 5f30c6ecca81a61b7d678e215e175d6baa738598 (patch) | |
tree | cbeb85e5c798e84859b1937a3de694b5c50969f7 | |
parent | 7214e4bb2f66c648d45cc1f4faf3c341c9a2144c (diff) | |
parent | c686cadfef27bb84966f807681874d91b96450c6 (diff) | |
download | wekan-5f30c6ecca81a61b7d678e215e175d6baa738598.tar.gz wekan-5f30c6ecca81a61b7d678e215e175d6baa738598.tar.bz2 wekan-5f30c6ecca81a61b7d678e215e175d6baa738598.zip |
Merge branch 'fix-bug-on-header-quick-access' of https://github.com/thuanpq/wekan into thuanpq-fix-bug-on-header-quick-access
-rw-r--r-- | client/components/boards/boardsList.js | 2 | ||||
-rw-r--r-- | client/components/main/header.js | 1 |
2 files changed, 1 insertions, 2 deletions
diff --git a/client/components/boards/boardsList.js b/client/components/boards/boardsList.js index cc4e2f87..1ed88146 100644 --- a/client/components/boards/boardsList.js +++ b/client/components/boards/boardsList.js @@ -2,8 +2,6 @@ const subManager = new SubsManager(); BlazeComponent.extendComponent({ onCreated() { - // Here is the only place that boards data needed, all boards data will stop sync when leaving this template. - Meteor.subscribe('boards'); Meteor.subscribe('setting'); }, diff --git a/client/components/main/header.js b/client/components/main/header.js index 3155b3d9..7fbc5716 100644 --- a/client/components/main/header.js +++ b/client/components/main/header.js @@ -1,4 +1,5 @@ Meteor.subscribe('user-admin'); +Meteor.subscribe('boards'); Template.header.helpers({ wrappedHeader() { |