mirror of
https://dev.azure.com/hugendubel/ISA/_git/ISA-Frontend
synced 2025-12-28 22:42:11 +01:00
Merged PR 2070: fix(shared-filter, reward-catalog): Added Branch Filter Toggle to Reward HSC...
fix(shared-filter, reward-catalog): Added Branch Filter Toggle to Reward HSC View, Adjusted Controls Panel Filter Styling and Layout to fix mobile issues and added spacing to order-by-toolbar Refs: #5514, #5475
This commit is contained in:
committed by
Lorenz Hilpert
parent
5711a75188
commit
6e55b7b0da
@@ -73,9 +73,6 @@ export class RewardCatalogComponent {
|
||||
#filterService = inject(FilterService);
|
||||
|
||||
displayStockFilterSwitch = computed(() => {
|
||||
if (this.isCallCenter) {
|
||||
return [];
|
||||
}
|
||||
const stockInput = this.#filterService
|
||||
.inputs()
|
||||
?.filter((input) => input.target === 'filter')
|
||||
|
||||
@@ -12,7 +12,7 @@
|
||||
></filter-search-bar-input>
|
||||
}
|
||||
|
||||
<div class="flex flex-row gap-4 items-center">
|
||||
<div class="flex flex-row gap-4 items-center flex-wrap justify-end">
|
||||
<ng-content></ng-content>
|
||||
|
||||
@for (switchFilter of switchFilters(); track switchFilter.filter.key) {
|
||||
|
||||
@@ -15,6 +15,8 @@
|
||||
</div>
|
||||
@if (orderBy.currentDir) {
|
||||
<ng-icon [name]="orderBy.currentDir" size="1.25rem"></ng-icon>
|
||||
} @else {
|
||||
<div class="w-5 h-5"></div>
|
||||
}
|
||||
</button>
|
||||
}
|
||||
|
||||
@@ -1,3 +1,7 @@
|
||||
:host {
|
||||
@apply inline-flex flex-col;
|
||||
}
|
||||
|
||||
.ui-toolbar {
|
||||
@apply gap-0;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user