-
Notifications
You must be signed in to change notification settings - Fork 33
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add clear selection option in search-selector #2860
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It would be better to make this optional by creating a new input property for the search selector component.
@@ -68,6 +68,7 @@ | |||
> | |||
{{ noOptionsFoundLabel | translate }} | |||
</mat-option> | |||
<mat-option *ngIf="addClearSelection" translate>Clear selection</mat-option> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
for consistency-sake I would suggest a single minus
<mat-option *ngIf="addClearSelection" translate>Clear selection</mat-option> | |
<mat-option *ngIf="addClearSelection">-</mat-option> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done
9e1b6d2
to
11d35fb
Compare
* commit 'aa450618f8647a5c7595771cb101eb01f94b6e71': (46 commits) Fix route state undefined (#2905) Revert "Fix search selection option focus (#2842)" (#2902) Fix meeting admin update as committee admin (#2901) Fix move in call list functionality (#2861) Add ability to go back to lead motion after amendment create (#2859) Block motions/tags page, if missing permission (#2857) Add info message to list of speakers content, if present is needed (#2854) Fix monospace font wrong weight on include (#2848) Fix participant history error (#2888) Add tests for list-search.service (#2874) Fix remove and add submitters (#2858) Add clear selection option in search-selector (#2860) Pause autoupdate connection on inactivitiy (#2851) Fix linting (#2867) Improve shared worker restart after reload process (#2847) Fix search service issues (#2844) Fix bulk change Submitters (#2846) Add test for CsvExportForBackendService (#2863) Fix double click needed to remove filter (#2856) Add lines between class members eslint rule (#2849) ...
Closes #2850