Merge pull request #7061 from opf/fix/29588/correct-search-filter-updates

[29588] Don't replace filters service during search filter change
pull/7066/head
Wieland Lindenthal 6 years ago committed by GitHub
commit c7de273a7f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 1
      frontend/src/app/components/filters/quick-filter-by-text-input/quick-filter-by-text-input.component.ts
  2. 1
      frontend/src/app/components/wp-table/configuration-modal/tabs/filters-tab.component.html

@ -81,7 +81,6 @@ export class WorkPackageFilterByTextInputComponent implements OnInit, OnDestroy
this.wpTableFilters.currentState.remove(currentSearchFilter);
}
this.wpTableFilters.replace(this.wpTableFilters.currentState);
this.filterChanged.emit(this.wpTableFilters.currentState);
});
}

@ -1,2 +1,3 @@
<query-filters *ngIf="!!filters"
(filtersChanged)="filters = $event"
[filters]="filters"></query-filters>

Loading…
Cancel
Save