summaryrefslogtreecommitdiffstats
path: root/client/components/activities/activities.js
diff options
context:
space:
mode:
authorLauri Ojansivu <x@xet7.org>2018-09-17 12:49:43 +0300
committerLauri Ojansivu <x@xet7.org>2018-09-17 12:49:43 +0300
commit5445955a774f6a9f29ee48109913ea3c4a9db33f (patch)
tree7b3bee4a7ce6d1053ca6ce0395c267f9ce3a45d8 /client/components/activities/activities.js
parent338e18870f937359c50c9be8b2a0fd96e0b4e141 (diff)
downloadwekan-5445955a774f6a9f29ee48109913ea3c4a9db33f.tar.gz
wekan-5445955a774f6a9f29ee48109913ea3c4a9db33f.tar.bz2
wekan-5445955a774f6a9f29ee48109913ea3c4a9db33f.zip
- Revert IFTTT.
Thanks to xet7 !
Diffstat (limited to 'client/components/activities/activities.js')
-rw-r--r--client/components/activities/activities.js16
1 files changed, 0 insertions, 16 deletions
diff --git a/client/components/activities/activities.js b/client/components/activities/activities.js
index b3fe8f50..25e151fd 100644
--- a/client/components/activities/activities.js
+++ b/client/components/activities/activities.js
@@ -50,12 +50,6 @@ BlazeComponent.extendComponent({
}
},
- checkItem(){
- const checkItemId = this.currentData().checklistItemId;
- const checkItem = ChecklistItems.findOne({_id:checkItemId});
- return checkItem.title;
- },
-
boardLabel() {
return TAPi18n.__('this-board');
},
@@ -72,16 +66,6 @@ BlazeComponent.extendComponent({
}, card.title));
},
- lastLabel(){
- const lastLabelId = this.currentData().labelId;
- const lastLabel = Boards.findOne(Session.get('currentBoard')).getLabelById(lastLabelId);
- if(lastLabel.name === undefined || lastLabel.name === ''){
- return lastLabel.color;
- }else{
- return lastLabel.name;
- }
- },
-
listLabel() {
return this.currentData().list().title;
},