diff options
author | Maxime Quandalle <maxime@quandalle.com> | 2015-06-06 14:48:36 +0200 |
---|---|---|
committer | Maxime Quandalle <maxime@quandalle.com> | 2015-06-06 14:50:45 +0200 |
commit | 12919cbfc6c3fd0793624776b3afb70e3a0cdd1a (patch) | |
tree | 102b78eff3f2dcfa863d3361757144a4c7a8ab22 /client/components/boards/boardHeader.js | |
parent | 49167ccaa91376bf70c400013641f76d1164950e (diff) | |
download | wekan-12919cbfc6c3fd0793624776b3afb70e3a0cdd1a.tar.gz wekan-12919cbfc6c3fd0793624776b3afb70e3a0cdd1a.tar.bz2 wekan-12919cbfc6c3fd0793624776b3afb70e3a0cdd1a.zip |
Restore the popup to add a member to the board
Diffstat (limited to 'client/components/boards/boardHeader.js')
-rw-r--r-- | client/components/boards/boardHeader.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/components/boards/boardHeader.js b/client/components/boards/boardHeader.js index 28238d4c..d0a1340c 100644 --- a/client/components/boards/boardHeader.js +++ b/client/components/boards/boardHeader.js @@ -33,7 +33,7 @@ BlazeComponent.extendComponent({ // Only show the star counter if the number of star is greater than 2 showStarCounter: function() { var currentBoard = this.currentData(); - return currentBoard && currentBoard.stars > 2; + return currentBoard && currentBoard.stars >= 2; }, events: function() { |