From 58fbe8e6f2d8e3963a32949cc061c0ca448c3896 Mon Sep 17 00:00:00 2001 From: Jacob Weisz Date: Thu, 26 Oct 2017 23:48:24 -0500 Subject: 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** --- client/components/lists/listHeader.jade | 4 ++-- 1 file 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 -- cgit v1.2.3-1-g7c22 From c2173e073ef7caa46f9870d35e040108a44e9e31 Mon Sep 17 00:00:00 2001 From: Lauri Ojansivu Date: Tue, 31 Oct 2017 05:58:33 +0200 Subject: Permit editing WIP limit. Thanks to nztqa and ocdtrekkie ! Closes #1310 --- CHANGELOG.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index f0521086..6dc1d242 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +# Upcoming Wekan release + +This release adds the following new features: + +* [Permit editing WIP limit](https://github.com/wekan/wekan/pull/1312). + +Thanks to GitHub users nztqa and ocdtrekkie for their contributions. + # v0.51 2017-10-25 Wekan release This release adds the following new features: -- cgit v1.2.3-1-g7c22