diff --git a/booklore-ui/src/app/features/book/components/book-browser/book-filter/book-filter.component.html b/booklore-ui/src/app/features/book/components/book-browser/book-filter/book-filter.component.html index d21894d3b..7d12ec30a 100644 --- a/booklore-ui/src/app/features/book/components/book-browser/book-filter/book-filter.component.html +++ b/booklore-ui/src/app/features/book/components/book-browser/book-filter/book-filter.component.html @@ -15,6 +15,8 @@
@for (filterType of filterTypes; track trackByFilterType(i, filterType); let i = $index) { + @if (filterStreams[filterType] | async; as filters) { + @if (filters.length > 0) { @@ -28,28 +30,28 @@ - @if (filterStreams[filterType] | async; as filters) { -
- @for (filter of filters; track trackByFilter(j, filter); let j = $index) { -
- {{ filter.value.name || filter.value }} - -
- } - @if (truncatedFilters[filterType]) { -
- Showing first 250 items -
- } -
- } +
+ @for (filter of filters; track trackByFilter(j, filter); let j = $index) { +
+ {{ filter.value.name || filter.value }} + +
+ } + @if (truncatedFilters[filterType]) { +
+ Showing first 500 items +
+ } +
+ } + } }