summaryrefslogtreecommitdiffstats
path: root/client
diff options
context:
space:
mode:
authorMarc Hartmayer <hello@hartmayer.com>2020-05-24 12:37:54 +0200
committerMarc Hartmayer <hello@hartmayer.com>2020-05-24 12:44:14 +0200
commitb2fee6a6c196f2ed2788444ad2387fba8f6df9cb (patch)
treed4b90757af23c3afa7e41b15f0bf2f60673d9178 /client
parent06515559a62a9caea7e31326c381dac0d40f710b (diff)
downloadwekan-b2fee6a6c196f2ed2788444ad2387fba8f6df9cb.tar.gz
wekan-b2fee6a6c196f2ed2788444ad2387fba8f6df9cb.tar.bz2
wekan-b2fee6a6c196f2ed2788444ad2387fba8f6df9cb.zip
Use an arrow function inside forEach() instead of an anonymous function
Suggested by deepcode.ai.
Diffstat (limited to 'client')
-rw-r--r--client/components/boards/boardBody.js4
-rw-r--r--client/components/cards/cardDetails.js4
-rw-r--r--client/components/sidebar/sidebar.js2
3 files changed, 5 insertions, 5 deletions
diff --git a/client/components/boards/boardBody.js b/client/components/boards/boardBody.js
index 4e473f18..78418f2a 100644
--- a/client/components/boards/boardBody.js
+++ b/client/components/boards/boardBody.js
@@ -365,12 +365,12 @@ BlazeComponent.extendComponent({
};
currentBoard
.cardsInInterval(start.toDate(), end.toDate())
- .forEach(function(card) {
+ .forEach(card => {
pushEvent(card);
});
currentBoard
.cardsDueInBetween(start.toDate(), end.toDate())
- .forEach(function(card) {
+ .forEach(card => {
pushEvent(
card,
`${card.title} ${TAPi18n.__('card-due')}`,
diff --git a/client/components/cards/cardDetails.js b/client/components/cards/cardDetails.js
index 441068b0..a57eddf9 100644
--- a/client/components/cards/cardDetails.js
+++ b/client/components/cards/cardDetails.js
@@ -805,9 +805,9 @@ Template.copyChecklistToManyCardsPopup.events({
// copy subtasks
cursor = Cards.find({ parentId: oldId });
- cursor.forEach(function() {
+ cursor.forEach(cur => {
'use strict';
- const subtask = arguments[0];
+ const subtask = cur;
subtask.parentId = _id;
subtask._id = null;
/* const newSubtaskId = */ Cards.insert(subtask);
diff --git a/client/components/sidebar/sidebar.js b/client/components/sidebar/sidebar.js
index 0e535041..7b14c1e0 100644
--- a/client/components/sidebar/sidebar.js
+++ b/client/components/sidebar/sidebar.js
@@ -653,7 +653,7 @@ BlazeComponent.extendComponent({
'subtext-with-parent',
'no-parent',
];
- options.forEach(function(element) {
+ options.forEach(element => {
if (element !== value) {
$(`#${element} ${MCB}`).toggleClass(CKCLS, false);
$(`#${element}`).toggleClass(CKCLS, false);