Merge pull request #3466 from jrsupplee/issue-3460

Option to add custom field to all cards
This commit is contained in:
Lauri Ojansivu 2021-01-23 00:32:06 +02:00 committed by GitHub
commit 124bce8f80
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
8 changed files with 48 additions and 2 deletions

View file

@ -239,7 +239,7 @@ BlazeComponent.extendComponent({
.customFields()
.fetch(),
function(field) {
if (field.automaticallyOnCard)
if (field.automaticallyOnCard || field.alwaysOnCard)
arr.push({ _id: field._id, value: null });
},
);