diff options
Diffstat (limited to 'client/components/lists/listHeader.js')
-rw-r--r-- | client/components/lists/listHeader.js | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/client/components/lists/listHeader.js b/client/components/lists/listHeader.js index 34322fa9..570cc30f 100644 --- a/client/components/lists/listHeader.js +++ b/client/components/lists/listHeader.js @@ -1,3 +1,5 @@ +import { Cookies } from 'meteor/ostrio:cookies'; +const cookies = new Cookies(); let listsColors; Meteor.startup(() => { listsColors = Lists.simpleSchema()._schema.color.allowedValues; @@ -7,9 +9,9 @@ BlazeComponent.extendComponent({ canSeeAddCard() { const list = Template.currentData(); return ( - !list.getWipLimit('enabled') - || list.getWipLimit('soft') - || !this.reachedWipLimit() + !list.getWipLimit('enabled') || + list.getWipLimit('soft') || + !this.reachedWipLimit() ); }, @@ -66,8 +68,8 @@ BlazeComponent.extendComponent({ reachedWipLimit() { const list = Template.currentData(); return ( - list.getWipLimit('enabled') - && list.getWipLimit('value') <= list.cards().count() + list.getWipLimit('enabled') && + list.getWipLimit('value') <= list.cards().count() ); }, @@ -108,8 +110,6 @@ Template.listHeader.helpers({ if (currentUser) { return (currentUser.profile || {}).showDesktopDragHandles; } else { - import { Cookies } from 'meteor/ostrio:cookies'; - const cookies = new Cookies(); if (cookies.has('showDesktopDragHandles')) { return true; } else { @@ -177,8 +177,8 @@ BlazeComponent.extendComponent({ const list = Template.currentData(); if ( - list.getWipLimit('soft') - && list.getWipLimit('value') < list.cards().count() + list.getWipLimit('soft') && + list.getWipLimit('value') < list.cards().count() ) { list.setWipLimit(list.cards().count()); } @@ -189,8 +189,8 @@ BlazeComponent.extendComponent({ const list = Template.currentData(); // Prevent user from using previously stored wipLimit.value if it is less than the current number of cards in the list if ( - !list.getWipLimit('enabled') - && list.getWipLimit('value') < list.cards().count() + !list.getWipLimit('enabled') && + list.getWipLimit('value') < list.cards().count() ) { list.setWipLimit(list.cards().count()); } |