diff --git a/client/web/compose/src/components/PageBlocks/CalendarConfigurator/FeedSource/configs/Record.vue b/client/web/compose/src/components/PageBlocks/CalendarConfigurator/FeedSource/configs/Record.vue index 1f9dd9994..45c537a08 100644 --- a/client/web/compose/src/components/PageBlocks/CalendarConfigurator/FeedSource/configs/Record.vue +++ b/client/web/compose/src/components/PageBlocks/CalendarConfigurator/FeedSource/configs/Record.vue @@ -227,7 +227,7 @@ export default { }, getOptionEventFieldLabel ({ name, label }) { - return name || label + return label || name }, }, } diff --git a/client/web/compose/src/components/PageBlocks/GeometryConfigurator/FeedSource/configs/Record.vue b/client/web/compose/src/components/PageBlocks/GeometryConfigurator/FeedSource/configs/Record.vue index 3395e743e..350a447af 100644 --- a/client/web/compose/src/components/PageBlocks/GeometryConfigurator/FeedSource/configs/Record.vue +++ b/client/web/compose/src/components/PageBlocks/GeometryConfigurator/FeedSource/configs/Record.vue @@ -239,7 +239,7 @@ export default { }, getOptionGeometryAndTitleFieldLabel ({ name, label }) { - return name || label + return label || name }, }, } diff --git a/client/web/compose/src/components/PageBlocks/MetricConfigurator/index.vue b/client/web/compose/src/components/PageBlocks/MetricConfigurator/index.vue index 53e34f707..31ad12dc3 100644 --- a/client/web/compose/src/components/PageBlocks/MetricConfigurator/index.vue +++ b/client/web/compose/src/components/PageBlocks/MetricConfigurator/index.vue @@ -456,7 +456,7 @@ export default { }, getOptionMetricFieldLabel ({ name, label }) { - return name || label + return label || name }, getOptionAggregationOperationKey ({ operation }) { diff --git a/client/web/compose/src/components/PageBlocks/ProgressConfigurator.vue b/client/web/compose/src/components/PageBlocks/ProgressConfigurator.vue index 49a7ffc80..0ea4d517b 100644 --- a/client/web/compose/src/components/PageBlocks/ProgressConfigurator.vue +++ b/client/web/compose/src/components/PageBlocks/ProgressConfigurator.vue @@ -673,7 +673,7 @@ export default { }, getOptionModuleFieldLabel ({ name, label }) { - return name || label + return label || name }, getOptionAggregationOperationKey ({ operation }) {