diff --git a/client/web/compose/src/components/PageBlocks/RecordConfigurator.vue b/client/web/compose/src/components/PageBlocks/RecordConfigurator.vue index 161b6d17d..23a40abf4 100644 --- a/client/web/compose/src/components/PageBlocks/RecordConfigurator.vue +++ b/client/web/compose/src/components/PageBlocks/RecordConfigurator.vue @@ -118,7 +118,7 @@ f.kind === 'Record') + isRecordFieldUsedConfigured () { + if (this.options.fields.length === 0) { + return this.module.fields.some(f => f.kind === 'Record') + } else { + return this.options.fields.some(f => f.kind === 'Record') + } }, },