#1514 Bugfix Checkout Summary Symbol

This commit is contained in:
Nino Righi
2021-03-09 17:56:50 +01:00
committed by Lorenz Hilpert
parent 5509a2940c
commit 8148013567

View File

@@ -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>