summaryrefslogtreecommitdiffstats
path: root/models
diff options
context:
space:
mode:
Diffstat (limited to 'models')
-rw-r--r--models/cards.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/models/cards.js b/models/cards.js
index d3a741bb..c77cd682 100644
--- a/models/cards.js
+++ b/models/cards.js
@@ -332,7 +332,7 @@ Cards.mutations({
const index = this.customFieldIndex(customFieldId);
if (index > -1) {
const update = {$set: {}};
- update.$set['customFields.${index}.value'] = value;
+ update.$set[`customFields.${index}.value`] = value;
return update;
}
// TODO