mirror of
https://github.com/wekan/wekan.git
synced 2025-04-22 21:17:18 -04:00
Merge branch 'thuanpq-fix-bug-on-header-quick-access' into devel
This commit is contained in:
commit
f4e0d92296
3 changed files with 3 additions and 3 deletions
|
@ -12,7 +12,8 @@ and fixes the following bugs:
|
|||
|
||||
* [Bug on not being able to see Admin Panel if not having access to Board List](https://github.com/wekan/wekan/pull/1371);
|
||||
* [Bug on not able to see member avatar on sidebar activity](https://github.com/wekan/wekan/pull/1380);
|
||||
* [Don't open swipebox on update card cover / download file / delete file](https://github.com/wekan/wekan/pull/1386).
|
||||
* [Don't open swipebox on update card cover / download file / delete file](https://github.com/wekan/wekan/pull/1386);
|
||||
* [Boards subscription should be placed at header for all other component can be used](https://github.com/wekan/wekan/pull/1381).
|
||||
|
||||
Thanks to GitHub users mfshiu, thuanpq and xet7 for their contributions.
|
||||
Thanks to translators for their translations.
|
||||
|
|
|
@ -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');
|
||||
},
|
||||
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
Meteor.subscribe('user-admin');
|
||||
Meteor.subscribe('boards');
|
||||
|
||||
Template.header.helpers({
|
||||
wrappedHeader() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue