Skip to content

Commit

Permalink
AB#27631 Disabled quick search in frontend
Browse files Browse the repository at this point in the history
  • Loading branch information
Ruben committed Apr 19, 2024
1 parent 383b5fb commit 58bc5f3
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 4 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,16 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased](https://github.com/global-121/121-platform/compare/v1.116.7...main)
## [Unreleased](https://github.com/global-121/121-platform/compare/v1.116.8...main)

---

## [1.116.8](https://github.com/global-121/121-platform/compare/v1.116.7...v1.116.8)- 2024-04-19

### Disabled

- Quick search in frontend

## [1.116.7](https://github.com/global-121/121-platform/compare/v1.116.6...v1.116.7)- 2024-04-18

### Fixed
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -458,8 +458,9 @@ export class ProgramPeopleAffectedComponent implements OnDestroy {

private createFiltersForAttibutes(): Filter[] {
const allFilters = [
this.filterService.SEARCH_FILTER_OPTION,
this.filterService.DIVIDER_FILTER_OPTION,
// TODO: Reactivate this line when the search filter is fixed
// this.filterService.SEARCH_FILTER_OPTION,
// this.filterService.DIVIDER_FILTER_OPTION,
];

let groupIndex = 0;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,9 @@ export class TableFilterRowComponent {
@ViewChild('statusTableFilter')
public statusTableFilter: StatusTableFilterComponent;

public textFilterOption: Filter[] = [this.filterService.SEARCH_FILTER_OPTION];
// public textFilterOption: Filter[] = [this.filterService.SEARCH_FILTER_OPTION];
// TODO: Reactivate this line when the search filter is fixed
public textFilterOption: Filter[] = [];

public textFilter: Observable<PaginationFilter[]>;

Expand Down

0 comments on commit 58bc5f3

Please sign in to comment.