Fixed Rare bug: All Boards page icons random dance. Reverted changing migrations. Fixed reordering cards. Part 2.

Fixes #4214

Thanks to xet7 !
This commit is contained in:
Lauri Ojansivu 2023-06-09 18:03:28 +03:00
parent 44bfe89ea8
commit e1a00090ba
5 changed files with 15 additions and 49 deletions

View file

@ -294,14 +294,6 @@ Boards.attachSchema(
}
},
},
background: {
/**
* The background color of the board.
*/
type: String,
optional: true,
defaultValue: '#16A085',
},
backgroundImageURL: {
/**
* The background image URL of the board.
@ -314,7 +306,6 @@ Boards.attachSchema(
* Show card counter per list
*/
type: Boolean,
optional: false,
defaultValue: false,
},
allowsBoardMemberList: {
@ -366,7 +357,6 @@ Boards.attachSchema(
* Does the board allows subtasks?
*/
type: Boolean,
optional: false,
defaultValue: true,
},
@ -1318,7 +1308,7 @@ Boards.mutations({
},
setVisibility(visibility) {
return { $set: { permission: visibility.toLowerCase() } };
return { $set: { permission: visibility } };
},
addLabel(name, color) {

View file

@ -51,12 +51,10 @@ Settings.attachSchema(
displayAuthenticationMethod: {
type: Boolean,
optional: true,
defaultValue: true,
},
defaultAuthenticationMethod: {
type: String,
optional: false,
defaultValue: 'password',
},
spinnerName: {
type: String,
@ -65,17 +63,14 @@ Settings.attachSchema(
hideLogo: {
type: Boolean,
optional: true,
defaultValue: false,
},
hideCardCounterList: {
type: Boolean,
optional: true,
defaultValue: false,
},
hideBoardMemberList: {
type: Boolean,
optional: true,
defaultValue: false,
},
customLoginLogoImageUrl: {
type: String,

View file

@ -171,7 +171,6 @@ Users.attachSchema(
*/
type: Boolean,
optional: true,
defaultValue: false,
},
'profile.hideCheckedItems': {
/**
@ -385,7 +384,6 @@ Users.attachSchema(
'board-view-lists',
'board-view-cal',
],
defaultValue: 'board-view-swimlanes',
},
'profile.listSortBy': {
/**