Merge pull request #5614 from NadavTasher/feature/change-default-maximum-width-for-lists

Changed the default maximum list width
This commit is contained in:
Lauri Ojansivu 2024-12-12 03:13:05 +02:00 committed by GitHub
commit 02f45f4e65
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -800,7 +800,7 @@ Users.helpers({
if (listConstraints[boardId] && listConstraints[boardId][listId]) {
return listConstraints[boardId][listId];
} else {
return 350;
return 550;
}
},