mirror of
https://github.com/wekan/wekan.git
synced 2026-03-02 03:40:16 +01:00
Fixed lint errors
This commit is contained in:
parent
dba5de1882
commit
ebd884e654
6 changed files with 18 additions and 18 deletions
|
|
@ -510,7 +510,7 @@ export class WekanCreator {
|
|||
}
|
||||
|
||||
createTriggers(wekanTriggers, boardId) {
|
||||
wekanTriggers.forEach((trigger, ruleIndex) => {
|
||||
wekanTriggers.forEach((trigger) => {
|
||||
if (trigger.hasOwnProperty('labelId')) {
|
||||
trigger.labelId = this.labels[trigger.labelId];
|
||||
}
|
||||
|
|
@ -525,7 +525,7 @@ export class WekanCreator {
|
|||
}
|
||||
|
||||
createActions(wekanActions, boardId) {
|
||||
wekanActions.forEach((action, ruleIndex) => {
|
||||
wekanActions.forEach((action) => {
|
||||
if (action.hasOwnProperty('labelId')) {
|
||||
action.labelId = this.labels[action.labelId];
|
||||
}
|
||||
|
|
@ -540,7 +540,7 @@ export class WekanCreator {
|
|||
}
|
||||
|
||||
createRules(wekanRules, boardId) {
|
||||
wekanRules.forEach((rule, ruleIndex) => {
|
||||
wekanRules.forEach((rule) => {
|
||||
// Create the rule
|
||||
rule.boardId = boardId;
|
||||
rule.triggerId = this.triggers[rule.triggerId];
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue