mirror of
https://github.com/wekan/wekan.git
synced 2026-02-12 19:24:20 +01:00
Fix #6118: Raise minimum list width from 100 to 270 in existing configurable system
This commit is contained in:
parent
345f9ec223
commit
93ebae78b8
4 changed files with 7 additions and 7 deletions
|
|
@ -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();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue