diff options
author | Maxime Quandalle <maxime@quandalle.com> | 2015-12-19 17:39:38 +0100 |
---|---|---|
committer | Maxime Quandalle <maxime@quandalle.com> | 2015-12-19 17:39:38 +0100 |
commit | f30c776f20cb20d3eea1e8d3b12160412d111c64 (patch) | |
tree | b0b739191bd0b64adb1b49f2249a61224b22cf6e | |
parent | 299c4290422c68c68e880be7b57568b0ee409be0 (diff) | |
download | wekan-f30c776f20cb20d3eea1e8d3b12160412d111c64.tar.gz wekan-f30c776f20cb20d3eea1e8d3b12160412d111c64.tar.bz2 wekan-f30c776f20cb20d3eea1e8d3b12160412d111c64.zip |
Fix home header bar
The issue was introduced in 3b2eb0f but was only partially fixed (in
urgency) in 71b9a42. We sould have test to avoid these trivial
regressions! (I guess React will also yelp in this particular case by
removing the need to link the template and the "component", and thus
removing the possibility to break this link)
Fixes #434
-rw-r--r-- | client/components/boards/boardArchive.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/components/boards/boardArchive.js b/client/components/boards/boardArchive.js index 6f62daaf..bd0de0a3 100644 --- a/client/components/boards/boardArchive.js +++ b/client/components/boards/boardArchive.js @@ -1,4 +1,4 @@ -Template.boardHeaderBar.events({ +Template.boardListHeaderBar.events({ 'click .js-open-archived-board'() { Modal.open('archivedBoards'); }, |