Skip to content

Commit

Permalink
v0.4.2
Browse files Browse the repository at this point in the history
  • Loading branch information
VictorHenrique317 committed Oct 2, 2024
1 parent 0cac09c commit c3c3cd4
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,12 @@ export class SearchDialogComponent {
this.nb_of_dims = Array(this.dims_values.length).fill(0).map((_, i) => i);
this.displayedColumns = this.nb_of_dims.map(i => 'dim' + (i + 1));
this.resetSelectedValues();

this.previous_filters.forEach((filter, i) => {
filter.forEach(value => {
this.selectedValues[i].push(value);
});
});
}

protected onSelectionChange(value, dim_index){
Expand Down

0 comments on commit c3c3cd4

Please sign in to comment.