Feature/improve search results display in assistant (#2458)

* Only show search results if search is active

* Update changelog
pull/2218/merge
Thomas Kaul 8 months ago committed by GitHub
parent d8d4d8f001
commit e9ef911548
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -13,6 +13,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Changed
- Improved the display of the results in the search for a holding
- Changed the queue jobs view in the admin control panel to an `@angular/material` data table
## 2.9.0 - 2023-10-08

@ -38,7 +38,10 @@
<ion-icon class="m-0" name="close-outline"></ion-icon>
</button>
</div>
<div class="overflow-auto py-3 result-container">
<div
*ngIf="isLoading || searchFormControl.value"
class="overflow-auto py-3 result-container"
>
<div>
<div class="h6 mb-1 px-2" i18n>Holdings</div>
<gf-assistant-list-item

Loading…
Cancel
Save