diff options
author | Ignatz <computer-freak94@gmx.de> | 2018-06-14 14:10:30 +0200 |
---|---|---|
committer | Ignatz <computer-freak94@gmx.de> | 2018-06-14 14:10:30 +0200 |
commit | c5f0e87dd09c68e5327a601af881c78ff723c8df (patch) | |
tree | 0c2878f675118333069f7f39c882bede82505ec3 /client | |
parent | 6a154ee9b0a7a6b3239813404538a5a9934228e4 (diff) | |
download | wekan-c5f0e87dd09c68e5327a601af881c78ff723c8df.tar.gz wekan-c5f0e87dd09c68e5327a601af881c78ff723c8df.tar.bz2 wekan-c5f0e87dd09c68e5327a601af881c78ff723c8df.zip |
fix for not able to remove "Show on Card"
Diffstat (limited to 'client')
-rw-r--r-- | client/components/sidebar/sidebarCustomFields.jade | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/client/components/sidebar/sidebarCustomFields.jade b/client/components/sidebar/sidebarCustomFields.jade index def083e9..fd31e5ac 100644 --- a/client/components/sidebar/sidebarCustomFields.jade +++ b/client/components/sidebar/sidebarCustomFields.jade @@ -37,7 +37,7 @@ template(name="createCustomFieldPopup") each dropdownItems.get input.js-dropdown-item(type="text" value=name placeholder="") input.js-dropdown-item.last(type="text" value="" placeholder="{{_ 'custom-field-dropdown-options-placeholder'}}") - a.flex.js-field-show-on-card + a.flex.js-field-show-on-card(class="{{#if showOnCard}}is-checked{{/if}}") .materialCheckBox(class="{{#if showOnCard}}is-checked{{/if}}") span {{_ 'show-field-on-card'}} @@ -49,4 +49,4 @@ template(name="createCustomFieldPopup") template(name="deleteCustomFieldPopup") p {{_ "custom-field-delete-pop"}} - button.js-confirm.negate.full(type="submit") {{_ 'delete'}}
\ No newline at end of file + button.js-confirm.negate.full(type="submit") {{_ 'delete'}} |