diff --git a/client/web/compose/src/components/PageBlocks/Report/Configurator.vue b/client/web/compose/src/components/PageBlocks/Report/Configurator.vue index fdcbc5e37..66448795a 100644 --- a/client/web/compose/src/components/PageBlocks/Report/Configurator.vue +++ b/client/web/compose/src/components/PageBlocks/Report/Configurator.vue @@ -8,7 +8,7 @@ @@ -63,8 +63,8 @@ export default { computed: { reportOptions () { return [ - { reportID: NoID, handle: this.$t('general:label.none') }, - ...this.reports, + { reportID: NoID, label: this.$t('general:label.none') }, + ...this.reports.map(r => ({ ...r, label: r.meta.name || r.handle })), ] }, diff --git a/lib/vue/src/components/reporter/Viewers/CReportChart.vue b/lib/vue/src/components/reporter/Viewers/CReportChart.vue index 606f651dc..99309dafd 100644 --- a/lib/vue/src/components/reporter/Viewers/CReportChart.vue +++ b/lib/vue/src/components/reporter/Viewers/CReportChart.vue @@ -1,9 +1,11 @@