diff --git a/web/typo3conf/ext/ep_theme/Resources/Private/Assets/js/myep/components/CrmData.vue b/web/typo3conf/ext/ep_theme/Resources/Private/Assets/js/myep/components/CrmData.vue index 7bec972f..511ed95f 100644 --- a/web/typo3conf/ext/ep_theme/Resources/Private/Assets/js/myep/components/CrmData.vue +++ b/web/typo3conf/ext/ep_theme/Resources/Private/Assets/js/myep/components/CrmData.vue @@ -51,7 +51,8 @@ loaded: false, message: '', messageClass: '', - crmData: [] + crmData: [], + hiddenSelectionGroups: [ 10 ] } }, created () { @@ -83,6 +84,9 @@ }); }, hasVisibleSelections (group) { + if (this.hiddenSelectionGroups.indexOf(group.id) !== -1) { + return false; + } for (let selection of group.selections) { if (selection.changeable === true || selection.value === true) { return true;