mirror of
https://github.com/wekan/wekan.git
synced 2025-12-16 23:40:13 +01:00
Show description on minicard
This commit is contained in:
parent
470645193e
commit
db4421c7b8
7 changed files with 71 additions and 2 deletions
|
|
@ -1034,6 +1034,22 @@ Migrations.add('add-description-text-allowed', () => {
|
|||
);
|
||||
});
|
||||
|
||||
Migrations.add('add-description-text-allowed-on-minicard', () => {
|
||||
Boards.update(
|
||||
{
|
||||
allowsDescriptionTextOnMinicard: {
|
||||
$exists: false,
|
||||
},
|
||||
},
|
||||
{
|
||||
$set: {
|
||||
allowsDescriptionTextOnMinicard: true,
|
||||
},
|
||||
},
|
||||
noValidateMulti,
|
||||
);
|
||||
});
|
||||
|
||||
Migrations.add('add-sort-field-to-boards', () => {
|
||||
Boards.find().forEach((board, index) => {
|
||||
if (!board.hasOwnProperty('sort')) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue