Skip to content

Commit

Permalink
Show label instead of name for fields selectors in metric, progress, …
Browse files Browse the repository at this point in the history
…geometry and calendar block configurators
  • Loading branch information
Fajfa committed Jul 29, 2024
1 parent 58fb6b3 commit 903f613
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ export default {
},
getOptionEventFieldLabel ({ name, label }) {
return name || label
return label || name
},
},
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ export default {
},
getOptionGeometryAndTitleFieldLabel ({ name, label }) {
return name || label
return label || name
},
},
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -456,7 +456,7 @@ export default {
},
getOptionMetricFieldLabel ({ name, label }) {
return name || label
return label || name
},
getOptionAggregationOperationKey ({ operation }) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -673,7 +673,7 @@ export default {
},
getOptionModuleFieldLabel ({ name, label }) {
return name || label
return label || name
},
getOptionAggregationOperationKey ({ operation }) {
Expand Down

0 comments on commit 903f613

Please sign in to comment.