allow -1 as 'auto'

This commit is contained in:
mark 2023-08-03 21:48:38 -05:00
parent 406766a82b
commit 7536c7b532

View file

@ -148,7 +148,7 @@ BlazeComponent.extendComponent({
// FIXME(mark-i-m): where do we put constants?
// also in imports/i18n/data/en.i18n.json
if (height < 100 || !height) {
if (height != -1 && (height < 100 || !height)) {
Template.instance()
.$('.swimlane-height-error')
.click();