diff options
author | Jacob Weisz <inbox@jacobweisz.com> | 2017-10-26 23:48:24 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-10-26 23:48:24 -0500 |
commit | 58fbe8e6f2d8e3963a32949cc061c0ca448c3896 (patch) | |
tree | 01666d285311d50bec05005d2ea950676c3b0720 /client/components | |
parent | 01507576b1c3c3ad148969691d1e22bf7addbeb9 (diff) | |
download | wekan-58fbe8e6f2d8e3963a32949cc061c0ca448c3896.tar.gz wekan-58fbe8e6f2d8e3963a32949cc061c0ca448c3896.tar.bz2 wekan-58fbe8e6f2d8e3963a32949cc061c0ca448c3896.zip |
Permit editing the WIP limit
This is a fix for #1310 and required for Edge users to be able to edit the WIP limit. (The up/down buttons appear to be "optional" according to the HTML5 spec, and can't be assumed to be present.)
I also believe I fixed a spelling error in the same section.
This PR is **NOT TESTED**
Diffstat (limited to 'client/components')
-rw-r--r-- | client/components/lists/listHeader.jade | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/client/components/lists/listHeader.jade b/client/components/lists/listHeader.jade index 2927fe59..e1d2f9f4 100644 --- a/client/components/lists/listHeader.jade +++ b/client/components/lists/listHeader.jade @@ -76,14 +76,14 @@ template(name="listDeletePopup") template(name="setWipLimitPopup") #js-wip-limit-edit - lable {{_ 'set-wip-limit-value'}} + label {{_ 'set-wip-limit-value'}} ul.pop-over-list li: a.js-enable-wip-limit {{_ 'enable-wip-limit'}} if isWipLimitEnabled i.fa.fa-check if isWipLimitEnabled p - input.wip-limit-value(type="number" value="{{ wipLimitValue }}" min="1" max="99" onkeydown="return false") + input.wip-limit-value(type="number" value="{{ wipLimitValue }}" min="1" max="99") input.wip-limit-apply(type="submit" value="{{_ 'apply'}}") input.wip-limit-error |