- Translate and add colors to IFTTT Rules dropdown.

Thanks to xet7 !
This commit is contained in:
Lauri Ojansivu 2019-01-22 15:22:31 +02:00
parent d8482b533a
commit 44e4df2492
3 changed files with 19 additions and 18 deletions

View file

@ -6,7 +6,8 @@ BlazeComponent.extendComponent({
const labels = Boards.findOne(Session.get('currentBoard')).labels;
for (let i = 0; i < labels.length; i++) {
if (labels[i].name === '' || labels[i].name === undefined) {
labels[i].name = labels[i].color.toUpperCase();
labels[i].name = labels[i].color;
labels[i].translatedname = `${TAPi18n.__(`color-${ labels[i].color}`)}`;
}
}
return labels;