Skip to content

Commit

Permalink
Monday eslint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jirihofman committed Jan 19, 2024
1 parent 5455ac0 commit 02a2e4b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/appmixer/monday/core/CreateItem/CreateItem.js
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ module.exports = {
},
transform: './ListGroups#groupsToSelectArray'
}
}
};
}

return context.sendJson({
Expand Down
10 changes: 5 additions & 5 deletions src/appmixer/monday/core/GetItem/GetItem.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@ module.exports = {
let item = data.items[0];
item?.column_values?.map(val => {
item[`column_value_${val.id}_id`] = val.id,
item[`column_value_${val.id}_text`] = val.text,
item[`column_value_${val.id}_title`] = val.title,
item[`column_value_${val.id}_type`] = val.type,
item[`column_value_${val.id}_value`] = val.value,
item[`column_value_${val.id}_additional_info`] = val.additional_info;
item[`column_value_${val.id}_text`] = val.text,
item[`column_value_${val.id}_title`] = val.title,
item[`column_value_${val.id}_type`] = val.type,
item[`column_value_${val.id}_value`] = val.value,
item[`column_value_${val.id}_additional_info`] = val.additional_info;
});

if (context.properties.generateOutputPortOptions) {
Expand Down

0 comments on commit 02a2e4b

Please sign in to comment.