mirror of
https://github.com/wekan/wekan.git
synced 2025-12-17 07:50:12 +01:00
allow -1 as 'auto'
This commit is contained in:
parent
406766a82b
commit
7536c7b532
1 changed files with 1 additions and 1 deletions
|
|
@ -148,7 +148,7 @@ BlazeComponent.extendComponent({
|
||||||
|
|
||||||
// FIXME(mark-i-m): where do we put constants?
|
// FIXME(mark-i-m): where do we put constants?
|
||||||
// also in imports/i18n/data/en.i18n.json
|
// also in imports/i18n/data/en.i18n.json
|
||||||
if (height < 100 || !height) {
|
if (height != -1 && (height < 100 || !height)) {
|
||||||
Template.instance()
|
Template.instance()
|
||||||
.$('.swimlane-height-error')
|
.$('.swimlane-height-error')
|
||||||
.click();
|
.click();
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue