mirror of
https://github.com/wekan/wekan.git
synced 2025-04-23 21:47:10 -04:00
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**
This commit is contained in:
parent
01507576b1
commit
58fbe8e6f2
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue