diff --git a/client/web/compose/src/components/Chart/Report/ReportEdit.vue b/client/web/compose/src/components/Chart/Report/ReportEdit.vue index 5701de892..f3ad2451c 100644 --- a/client/web/compose/src/components/Chart/Report/ReportEdit.vue +++ b/client/web/compose/src/components/Chart/Report/ReportEdit.vue @@ -589,8 +589,8 @@ export default { }), ].filter(({ kind, options = {} }) => { return this.dimensionFieldKind.includes(kind) && !(options.useRichTextEditor || options.multiLine) - }).map(({ name, label, kind }) => { - return { value: name, text: `${label} (${kind})`, kind } + }).map(({ name, handle, label, kind }) => { + return { value: name, text: `${label || name} (${kind})`, kind } }) },