mirror of
https://github.com/wekan/wekan.git
synced 2025-12-17 16:00:13 +01: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
|
i.fa.fa-sign-out
|
||||||
| {{_ 'show-card-counter-per-list'}}
|
| {{_ 'show-card-counter-per-list'}}
|
||||||
div.check-div
|
div.check-div
|
||||||
a.flex.js-field-has-boardmemberlist(class="{{#if allowsBoardMember}}is-checked{{/if}}")
|
a.flex.js-field-has-boardmemberlist(class="{{#if allowsBoardMemberList}}is-checked{{/if}}")
|
||||||
.materialCheckBox(class="{{#if allowsBoardMember}}is-checked{{/if}}")
|
.materialCheckBox(class="{{#if allowsBoardMemberList}}is-checked{{/if}}")
|
||||||
span
|
span
|
||||||
i.fa.fa-hourglass-start
|
i.fa.fa-hourglass-start
|
||||||
| {{_ 'show-board_members-avatar'}}
|
| {{_ 'show-board_members-avatar'}}
|
||||||
|
|
|
||||||
|
|
@ -89,6 +89,7 @@ Migrations.add('add-cardcounterlist-allowed', () => {
|
||||||
);
|
);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
/*
|
||||||
Migrations.add('add-boardmemberlist-allowed', () => {
|
Migrations.add('add-boardmemberlist-allowed', () => {
|
||||||
Boards.update(
|
Boards.update(
|
||||||
{
|
{
|
||||||
|
|
@ -104,7 +105,7 @@ Migrations.add('add-boardmemberlist-allowed', () => {
|
||||||
noValidateMulti,
|
noValidateMulti,
|
||||||
);
|
);
|
||||||
});
|
});
|
||||||
|
*/
|
||||||
|
|
||||||
Migrations.add('lowercase-board-permission', () => {
|
Migrations.add('lowercase-board-permission', () => {
|
||||||
['Public', 'Private'].forEach(permission => {
|
['Public', 'Private'].forEach(permission => {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue