Supress displaying subtask boards to avoid clutter

This commit is contained in:
Justin Zhang 2022-10-06 15:09:51 +08:00
parent ef64b0a654
commit 53e67ff57a
2 changed files with 6 additions and 5 deletions

View file

@ -152,7 +152,8 @@ BlazeComponent.extendComponent({
$and: [
{ archived: false },
{ type: { $in: ['board', 'template-container'] } },
{ $or: [] }
{ $or: [] },
{ title: { $not: { $regex: /^\^.*\^$/ } } }
]
};