diff options
author | Ignatz <computer-freak94@gmx.de> | 2018-05-18 10:43:43 +0200 |
---|---|---|
committer | Ignatz <computer-freak94@gmx.de> | 2018-05-18 10:43:43 +0200 |
commit | 838578657da4ed46be0e32091120c7554b07c102 (patch) | |
tree | b898d0f53f896c0258bfe5a11bc6373cebc0bfbf /client/components/cards/cardCustomFields.js | |
parent | d6cfac0122dc5e6819c82f73c728488e0600cb70 (diff) | |
download | wekan-838578657da4ed46be0e32091120c7554b07c102.tar.gz wekan-838578657da4ed46be0e32091120c7554b07c102.tar.bz2 wekan-838578657da4ed46be0e32091120c7554b07c102.zip |
template literals correction
Diffstat (limited to 'client/components/cards/cardCustomFields.js')
-rw-r--r-- | client/components/cards/cardCustomFields.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/components/cards/cardCustomFields.js b/client/components/cards/cardCustomFields.js index 821ca02b..019fcab5 100644 --- a/client/components/cards/cardCustomFields.js +++ b/client/components/cards/cardCustomFields.js @@ -24,7 +24,7 @@ Template.cardCustomFieldsPopup.events({ const CardCustomField = BlazeComponent.extendComponent({ getTemplate() { - return 'cardCustomField-${this.data().definition.type}'; + return `cardCustomField-${this.data().definition.type}`; }, onCreated() { |