Browse Source

Added to All Boards MiniScreen: members list and board card count per list.

Fixes https://github.com/wekan/wekan/pull/4477

Thanks to xet7 !
Lauri Ojansivu 3 years ago
parent
commit
45642911a9
1 changed files with 10 additions and 11 deletions
  1. 10 11
      client/components/boards/boardsList.jade

+ 10 - 11
client/components/boards/boardsList.jade

@@ -94,17 +94,16 @@ template(name="boardList")
                   span.board-list-item-name(title="{{_ 'board-drag-drop-reorder-or-click-open'}}")
                   span.board-list-item-name(title="{{_ 'board-drag-drop-reorder-or-click-open'}}")
                     +viewer
                     +viewer
                       = title
                       = title
-                  unless isMiniScreen
-                    if allowsBoardMemberList
-                      .minicard-members
-                        each member in boardMembers _id
-                          a.name
-                            +userAvatar(userId=member noRemove=true)
-                    if allowsCardCounterList
-                        .minicard-lists.flex.flex-wrap
-                          each list in boardLists _id
-                            .item
-                              | {{ list }}
+                  if allowsBoardMemberList
+                    .minicard-members
+                      each member in boardMembers _id
+                        a.name
+                          +userAvatar(userId=member noRemove=true)
+                  if allowsCardCounterList
+                    .minicard-lists.flex.flex-wrap
+                      each list in boardLists _id
+                        .item
+                          | {{ list }}
                   i.fa.js-star-board(
                   i.fa.js-star-board(
                     class="fa-star{{#if isStarred}} is-star-active{{else}}-o{{/if}}"
                     class="fa-star{{#if isStarred}} is-star-active{{else}}-o{{/if}}"
                     title="{{_ 'star-board-title'}}")
                     title="{{_ 'star-board-title'}}")