Show label instead of name for fields selectors in metric, progress, geometry and calendar block configurators
This commit is contained in:
@@ -227,7 +227,7 @@ export default {
|
||||
},
|
||||
|
||||
getOptionEventFieldLabel ({ name, label }) {
|
||||
return name || label
|
||||
return label || name
|
||||
},
|
||||
},
|
||||
}
|
||||
|
||||
@@ -239,7 +239,7 @@ export default {
|
||||
},
|
||||
|
||||
getOptionGeometryAndTitleFieldLabel ({ name, label }) {
|
||||
return name || label
|
||||
return label || name
|
||||
},
|
||||
},
|
||||
}
|
||||
|
||||
@@ -456,7 +456,7 @@ export default {
|
||||
},
|
||||
|
||||
getOptionMetricFieldLabel ({ name, label }) {
|
||||
return name || label
|
||||
return label || name
|
||||
},
|
||||
|
||||
getOptionAggregationOperationKey ({ operation }) {
|
||||
|
||||
@@ -673,7 +673,7 @@ export default {
|
||||
},
|
||||
|
||||
getOptionModuleFieldLabel ({ name, label }) {
|
||||
return name || label
|
||||
return label || name
|
||||
},
|
||||
|
||||
getOptionAggregationOperationKey ({ operation }) {
|
||||
|
||||
Reference in New Issue
Block a user