diff options
author | Maxime Quandalle <maxime@quandalle.com> | 2015-12-09 23:19:10 -0500 |
---|---|---|
committer | Maxime Quandalle <maxime@quandalle.com> | 2015-12-09 23:20:44 -0500 |
commit | 480ef632730b28c9a7ec4d6dfd6e682c8df7c099 (patch) | |
tree | 22da7cd3ea33d9fd3e86030d7bb364f76618db10 | |
parent | f9f4747a6afe97c1ea21098cd9de838821b8ea2f (diff) | |
download | wekan-480ef632730b28c9a7ec4d6dfd6e682c8df7c099.tar.gz wekan-480ef632730b28c9a7ec4d6dfd6e682c8df7c099.tar.bz2 wekan-480ef632730b28c9a7ec4d6dfd6e682c8df7c099.zip |
Fix a regression introduced in 71b9a42f
The buttons in the board header were not click-able anymore.
-rw-r--r-- | client/components/boards/boardHeader.js | 4 | ||||
-rw-r--r-- | client/components/main/header.js | 5 |
2 files changed, 2 insertions, 7 deletions
diff --git a/client/components/boards/boardHeader.js b/client/components/boards/boardHeader.js index 3dc6d754..9423ecee 100644 --- a/client/components/boards/boardHeader.js +++ b/client/components/boards/boardHeader.js @@ -30,7 +30,7 @@ Template.boardChangeTitlePopup.events({ BlazeComponent.extendComponent({ template() { - return 'headerBoard'; + return 'boardHeaderBar'; }, isStarred() { @@ -74,7 +74,7 @@ BlazeComponent.extendComponent({ }, }]; }, -}).register('headerBoard'); +}).register('boardHeaderBar'); BlazeComponent.extendComponent({ template() { diff --git a/client/components/main/header.js b/client/components/main/header.js index 30cb2d8f..d44fe76d 100644 --- a/client/components/main/header.js +++ b/client/components/main/header.js @@ -1,9 +1,4 @@ Template.header.helpers({ - // Reactively set the color of the page from the color of the current board. - headerTemplate() { - return 'headerBoard'; - }, - wrappedHeader() { return !Session.get('currentBoard'); }, |