소스 검색

Merge branch 'main' of github.com:wekan/wekan

Lauri Ojansivu 10 달 전
부모
커밋
0d9a9d1ed8
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      client/lib/utils.js

+ 1 - 1
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);