Redesign offer result card layout
All checks were successful
Build Docker Image / build (push) Successful in 4m53s

This commit is contained in:
Ruslan Bakiev
2026-02-06 17:07:38 +07:00
parent b971391fd7
commit e4f81dba7c
9 changed files with 106 additions and 24 deletions

View File

@@ -44,6 +44,7 @@
:location-name="offer.locationName"
:product-name="offer.productName || offer.title || undefined"
:price-per-unit="offer.pricePerUnit ? Number(offer.pricePerUnit) : null"
:quantity="offer.quantity"
:currency="offer.currency"
:unit="offer.unit"
:stages="[]"
@@ -91,6 +92,7 @@ interface Offer {
status?: string | null
latitude?: number | null
longitude?: number | null
quantity?: number | string | null
pricePerUnit?: number | string | null
currency?: string | null
unit?: string | null