Fix 6.93 with brackground image breaks scrolling on lists within swimlanes.

Thanks to xet7 !

Fixes #4936
This commit is contained in:
Lauri Ojansivu 2023-06-03 20:38:03 -04:00
parent 4405693b1f
commit 04aaa6f30c
3 changed files with 11 additions and 18 deletions

View file

@ -694,9 +694,8 @@ BlazeComponent.extendComponent({
'click .js-remove-background-image'() {
const currentBoard = Boards.findOne(Session.get('currentBoard'));
currentBoard.setBackgroundImageURL("");
Utils.setBackgroundImage("");
Popup.back();
//Utils.reload();
Utils.reload();
event.preventDefault();
},
},

View file

@ -47,7 +47,8 @@
display: flex;
flex-direction: row;
overflow: 0;
max-height: calc(100% - 26px);
/* max-height: calc(100% - 26px); */
max-height: calc(400px);
}
.swimlane.placeholder {
background-color: rgba(0,0,0,0.2);