diff options
author | Maxime Quandalle <maxime@quandalle.com> | 2015-08-23 22:00:02 +0200 |
---|---|---|
committer | Maxime Quandalle <maxime@quandalle.com> | 2015-08-25 18:07:04 +0200 |
commit | 9bea6a52d32c843d277640e42785a8faac583a63 (patch) | |
tree | 8ad09ce9020d4f147095a572ba384c217259de62 /client/components/boards/boardHeader.jade | |
parent | f03fee5162bf8151c60c09fde2e983a5d5dc18ca (diff) | |
download | wekan-9bea6a52d32c843d277640e42785a8faac583a63.tar.gz wekan-9bea6a52d32c843d277640e42785a8faac583a63.tar.bz2 wekan-9bea6a52d32c843d277640e42785a8faac583a63.zip |
Fix the stars
Fixes #214
Diffstat (limited to 'client/components/boards/boardHeader.jade')
-rw-r--r-- | client/components/boards/boardHeader.jade | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/client/components/boards/boardHeader.jade b/client/components/boards/boardHeader.jade index 9ec79227..f6ef59c3 100644 --- a/client/components/boards/boardHeader.jade +++ b/client/components/boards/boardHeader.jade @@ -7,8 +7,8 @@ template(name="headerBoard") unless isSandstorm if currentUser a.board-header-btn.js-star-board(class="{{#if isStarred}}is-active{{/if}}" - title="{{#if currentBoard.isStarred}}{{_ 'click-to-unstar'}}{{else}}{{_ 'click-to-star'}}{{/if}} {{_ 'starred-boards-description'}}") - i.fa(class="fa-star{{#unless currentBoard.isStarred}}-o{{/unless}}") + title="{{#if isStarred}}{{_ 'click-to-unstar'}}{{else}}{{_ 'click-to-star'}}{{/if}} {{_ 'starred-boards-description'}}") + i.fa(class="fa-star{{#unless isStarred}}-o{{/unless}}") if showStarCounter span {{_ 'board-nb-stars' currentBoard.stars}} |