summaryrefslogtreecommitdiffstats
path: root/client/components/cards/labels.js
diff options
context:
space:
mode:
authorMaxime Quandalle <maxime@quandalle.com>2015-08-28 05:11:45 +0200
committerMaxime Quandalle <maxime@quandalle.com>2015-08-28 06:07:21 +0200
commit91cfcf7b12b5e7c137c2e765b2c378dde6b82966 (patch)
treefc0314bc81f6e12361858994a22b8dd66cc56098 /client/components/cards/labels.js
parent5eb67e803af0fd674f85a80e47913fa13fed24b2 (diff)
downloadwekan-91cfcf7b12b5e7c137c2e765b2c378dde6b82966.tar.gz
wekan-91cfcf7b12b5e7c137c2e765b2c378dde6b82966.tar.bz2
wekan-91cfcf7b12b5e7c137c2e765b2c378dde6b82966.zip
Yet another iteration on the user interface
* Automatically display the overlay when the card details is opened (previously we waited for the mouse to enter the card details panel) * Improve the design of the minicards badges * Change the minicard background when it is hovered or selected * Removes unimplemented features links from the UI * Fix the board canvas position when the sidebar is open (was hidden behind) Fixes #215
Diffstat (limited to 'client/components/cards/labels.js')
-rw-r--r--client/components/cards/labels.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/client/components/cards/labels.js b/client/components/cards/labels.js
index 731e6367..4e6ceb3a 100644
--- a/client/components/cards/labels.js
+++ b/client/components/cards/labels.js
@@ -37,7 +37,7 @@ Template.createLabelPopup.helpers({
// is not already used in the board (although it's not a problem if two
// labels have the same color).
defaultColor: function() {
- var labels = this.labels || this.card.board().labels;
+ var labels = Boards.findOne(Session.get('currentBoard')).labels;
var usedColors = _.pluck(labels, 'color');
var availableColors = _.difference(labelColors, usedColors);
return availableColors.length > 1 ? availableColors[0] : labelColors[0];