mirror of
https://dev.azure.com/hugendubel/ISA/_git/ISA-Frontend
synced 2025-12-28 22:42:11 +01:00
Merged PR 1820: Fix - Close dropdown after selecting a reason in add product modal
Fix - Close dropdown after selecting a reason in add product modal
This commit is contained in:
committed by
Lorenz Hilpert
parent
34e96f0751
commit
a0c8035dbb
@@ -40,7 +40,7 @@
|
||||
<ui-icon class="ml-4" [rotate]="dropdown.opened ? '270deg' : '90deg'" icon="arrow_head"></ui-icon>
|
||||
</button>
|
||||
<ui-dropdown #reasonDropdown class="font-bold" yPosition="below" xPosition="after" [xOffset]="8">
|
||||
<button uiDropdownItem *ngFor="let reason of returnReasons$ | async" (click)="reasonChanged(reason)">
|
||||
<button uiDropdownItem *ngFor="let reason of returnReasons$ | async" (click)="reasonChanged(reason); dropdown.close()">
|
||||
{{ reason }}
|
||||
</button>
|
||||
</ui-dropdown>
|
||||
|
||||
Reference in New Issue
Block a user