From 3641a8f38977792de48f00027c85b8034c632428 Mon Sep 17 00:00:00 2001 From: Martin Filser Date: Mon, 5 Jun 2023 12:22:00 +0200 Subject: [PATCH] don't set background image in .board-canvas too --- client/lib/utils.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/lib/utils.js b/client/lib/utils.js index cfc313f62..07a334d0e 100644 --- a/client/lib/utils.js +++ b/client/lib/utils.js @@ -4,7 +4,7 @@ Utils = { setBackgroundImage(url) { const currentBoard = Utils.getCurrentBoard(); if (currentBoard.backgroundImageURL !== undefined) { - $(".board-wrapper,.board-wrapper .board-canvas").css({"background":"url(" + currentBoard.backgroundImageURL + ")","background-size":"cover"}); + $(".board-wrapper").css({"background":"url(" + currentBoard.backgroundImageURL + ")","background-size":"cover"}); $(".swimlane,.swimlane .list,.swimlane .list .list-body,.swimlane .list:first-child .list-body").css({"background-color":"transparent"}); } else if (currentBoard.color !== undefined) { currentBoard.setColor(currentBoard.color);