Fix #6118: Raise minimum list width from 100 to 270 in existing configurable system

This commit is contained in:
KhaoulaMaleh 2026-02-06 22:23:28 -11:00
parent 345f9ec223
commit 93ebae78b8
4 changed files with 7 additions and 7 deletions

View file

@ -403,7 +403,7 @@ BlazeComponent.extendComponent({
);
// FIXME(mark-i-m): where do we put constants?
if (width < 100 || !width || constraint < 100 || !constraint) {
if (width < 270 || !width || constraint < 270 || !constraint) {
Template.instance()
.$('.list-width-error')
.click();