mirror of
https://github.com/wekan/wekan.git
synced 2026-01-20 16:26:09 +01:00
customFields: fix leftover from lint
Looks like I forgot to use the camelCase notation here, and this leads to an exception while updating a custom field.
This commit is contained in:
parent
907c761f71
commit
4c72479d12
1 changed files with 1 additions and 1 deletions
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue