mirror of
https://dev.azure.com/hugendubel/ISA/_git/ISA-Frontend
synced 2025-12-28 22:42:11 +01:00
#1514 Bugfix Checkout Summary Symbol
This commit is contained in:
committed by
Lorenz Hilpert
parent
5509a2940c
commit
8148013567
@@ -48,23 +48,23 @@
|
||||
<div class="row item-group-header">
|
||||
<ui-icon
|
||||
class="icon-order-type"
|
||||
[size]="displayOrder.features?.orderType === 'B2B-Versand' ? '50px' : '25px'"
|
||||
[size]="displayOrder.items[0]?.features?.orderType === 'B2B-Versand' ? '50px' : '25px'"
|
||||
[icon]="
|
||||
displayOrder.features?.orderType === 'Abholung'
|
||||
displayOrder.items[0]?.features?.orderType === 'Abholung'
|
||||
? 'box_out'
|
||||
: displayOrder.features?.orderType === 'Versand'
|
||||
: displayOrder.items[0]?.features?.orderType === 'Versand'
|
||||
? 'truck'
|
||||
: displayOrder.features?.orderType === 'Rücklage'
|
||||
: displayOrder.items[0]?.features?.orderType === 'Rücklage'
|
||||
? 'shopping_bag'
|
||||
: displayOrder.features?.orderType === 'B2B-Versand'
|
||||
: displayOrder.items[0]?.features?.orderType === 'B2B-Versand'
|
||||
? 'truck_b2b'
|
||||
: displayOrder.features?.orderType === 'Download'
|
||||
: displayOrder.items[0]?.features?.orderType === 'Download'
|
||||
? 'download'
|
||||
: 'truck'
|
||||
"
|
||||
></ui-icon>
|
||||
<div class="label">
|
||||
{{ displayOrder.features?.orderType }}
|
||||
{{ displayOrder.items[0]?.features?.orderType }}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user