diff options
author | Lauri Ojansivu <x@xet7.org> | 2019-03-11 19:04:13 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-11 19:04:13 +0200 |
commit | 4be5fa598ea5426602d9d2a55facf03cc5f0f9cb (patch) | |
tree | 04a3362ce4f212c0956dad27fcd5b3115dd33199 | |
parent | 907c761f71e8764574ac9c4f8ab1b892082a03b4 (diff) | |
parent | 4c72479d1206850d436261dc5c6a4127f246f6da (diff) | |
download | wekan-4be5fa598ea5426602d9d2a55facf03cc5f0f9cb.tar.gz wekan-4be5fa598ea5426602d9d2a55facf03cc5f0f9cb.tar.bz2 wekan-4be5fa598ea5426602d9d2a55facf03cc5f0f9cb.zip |
Merge pull request #2244 from bentiss/edge
customFields: fix leftover from lint
-rw-r--r-- | models/cards.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/models/cards.js b/models/cards.js index eef62be1..c3bae400 100644 --- a/models/cards.js +++ b/models/cards.js @@ -1412,7 +1412,7 @@ function cardCustomFields(userId, doc, fieldNames, modifier) { // only individual changes are registered if (dotNotation.length > 1) { - const customFieldId = doc.customFields[dot_notation[1]]._id; + const customFieldId = doc.customFields[dotNotation[1]]._id; const act = { userId, customFieldId, |