mirror of
https://github.com/wekan/wekan.git
synced 2025-04-23 21:47:10 -04:00
Fix Board Settings / All Boards Settings options has some bug.
Thanks to helioguardabaxo ! Fixes #4478
This commit is contained in:
parent
2b1675847c
commit
77085daaa8
2 changed files with 4 additions and 3 deletions
|
@ -148,8 +148,8 @@ template(name="boardInfoOnMyBoardsPopup")
|
|||
i.fa.fa-sign-out
|
||||
| {{_ 'show-card-counter-per-list'}}
|
||||
div.check-div
|
||||
a.flex.js-field-has-boardmemberlist(class="{{#if allowsBoardMember}}is-checked{{/if}}")
|
||||
.materialCheckBox(class="{{#if allowsBoardMember}}is-checked{{/if}}")
|
||||
a.flex.js-field-has-boardmemberlist(class="{{#if allowsBoardMemberList}}is-checked{{/if}}")
|
||||
.materialCheckBox(class="{{#if allowsBoardMemberList}}is-checked{{/if}}")
|
||||
span
|
||||
i.fa.fa-hourglass-start
|
||||
| {{_ 'show-board_members-avatar'}}
|
||||
|
|
|
@ -89,6 +89,7 @@ Migrations.add('add-cardcounterlist-allowed', () => {
|
|||
);
|
||||
});
|
||||
|
||||
/*
|
||||
Migrations.add('add-boardmemberlist-allowed', () => {
|
||||
Boards.update(
|
||||
{
|
||||
|
@ -104,7 +105,7 @@ Migrations.add('add-boardmemberlist-allowed', () => {
|
|||
noValidateMulti,
|
||||
);
|
||||
});
|
||||
|
||||
*/
|
||||
|
||||
Migrations.add('lowercase-board-permission', () => {
|
||||
['Public', 'Private'].forEach(permission => {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue