summaryrefslogtreecommitdiffstats
path: root/client/components/boards/boardBody.js
diff options
context:
space:
mode:
authorwekan <wekan@wekan-sandstorm.workgroup>2019-05-13 11:01:50 +0200
committerwekan <wekan@wekan-sandstorm.workgroup>2019-05-13 11:01:50 +0200
commitab4fec0f3c6d5a613b309ae6fac41dbb31f1765d (patch)
tree385dbc5f574085f278182014edb7871780f851b9 /client/components/boards/boardBody.js
parentb98347947661e5c79f286a4e5d7f11e614dfb43c (diff)
downloadwekan-ab4fec0f3c6d5a613b309ae6fac41dbb31f1765d.tar.gz
wekan-ab4fec0f3c6d5a613b309ae6fac41dbb31f1765d.tar.bz2
wekan-ab4fec0f3c6d5a613b309ae6fac41dbb31f1765d.zip
Fixed #2338 -> Slow opening of big boards with too many archived items
Diffstat (limited to 'client/components/boards/boardBody.js')
-rw-r--r--client/components/boards/boardBody.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/client/components/boards/boardBody.js b/client/components/boards/boardBody.js
index 301c0742..dc5e0ede 100644
--- a/client/components/boards/boardBody.js
+++ b/client/components/boards/boardBody.js
@@ -14,7 +14,7 @@ BlazeComponent.extendComponent({
const currentBoardId = Session.get('currentBoard');
if (!currentBoardId)
return;
- const handle = subManager.subscribe('board', currentBoardId);
+ const handle = subManager.subscribe('board', currentBoardId, false);
Tracker.nonreactive(() => {
Tracker.autorun(() => {
this.isBoardReady.set(handle.ready());