mirror of
https://gitlab.com/bramw/baserow.git
synced 2025-04-04 13:15:24 +00:00
Only list aggregation types that make sense for source table in chart configuration
This commit is contained in:
parent
b2dd5bcece
commit
b5beb50341
1 changed files with 7 additions and 1 deletions
|
@ -98,7 +98,13 @@ export default {
|
|||
},
|
||||
computed: {
|
||||
groupedAggregationTypes() {
|
||||
return this.$registry.getOrderedList('groupedAggregation')
|
||||
const allAggregationTypes =
|
||||
this.$registry.getOrderedList('groupedAggregation')
|
||||
return allAggregationTypes.filter((aggType) => {
|
||||
return this.tableFields.some((tableField) =>
|
||||
aggType.fieldIsCompatible(tableField)
|
||||
)
|
||||
})
|
||||
},
|
||||
aggregationTypesAvailableForSelection() {
|
||||
return this.groupedAggregationTypes.filter(
|
||||
|
|
Loading…
Add table
Reference in a new issue