1
0
Fork 0
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:
Petr Stribny 2025-03-10 08:32:32 +01:00
parent b2dd5bcece
commit b5beb50341

View file

@ -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(