3
0

Show label instead of name for fields selectors in metric, progress, geometry and calendar block configurators

This commit is contained in:
Jože Fortun
2024-07-29 08:31:22 +02:00
parent d619a4273e
commit d5d623b982
4 changed files with 4 additions and 4 deletions

View File

@@ -227,7 +227,7 @@ export default {
},
getOptionEventFieldLabel ({ name, label }) {
return name || label
return label || name
},
},
}

View File

@@ -239,7 +239,7 @@ export default {
},
getOptionGeometryAndTitleFieldLabel ({ name, label }) {
return name || label
return label || name
},
},
}

View File

@@ -456,7 +456,7 @@ export default {
},
getOptionMetricFieldLabel ({ name, label }) {
return name || label
return label || name
},
getOptionAggregationOperationKey ({ operation }) {

View File

@@ -673,7 +673,7 @@ export default {
},
getOptionModuleFieldLabel ({ name, label }) {
return name || label
return label || name
},
getOptionAggregationOperationKey ({ operation }) {