1
0
Fork 0
mirror of https://gitlab.com/bramw/baserow.git synced 2025-04-04 05:05:24 +00:00

Don't reset grouped aggregate form if the selected table is the same one

This commit is contained in:
Petr Stribny 2025-03-12 03:50:00 +01:00
parent ecf96b5cc8
commit 2f7e965837

View file

@ -323,14 +323,16 @@ export default {
return aggType.getName()
},
changeTableId(tableId) {
this.values.table_id = tableId
this.values.view_id = null
this.values.aggregation_series = [
{ field_id: null, aggregation_type: '' },
]
this.values.aggregation_group_bys = []
this.values.aggregation_sorts = []
this.v$.values.table_id.$touch()
if (this.values.table_id !== tableId) {
this.values.table_id = tableId
this.values.view_id = null
this.values.aggregation_series = [
{ field_id: null, aggregation_type: '' },
]
this.values.aggregation_group_bys = []
this.values.aggregation_sorts = []
this.v$.values.table_id.$touch()
}
},
async addSeries() {
this.setEmitValues(false)