Simplify OfferResultCard and use daisyUI Steps
All checks were successful
Build Docker Image / build (push) Successful in 4m42s

- Remove sourceName, latitude, longitude props from OfferResultCard
- Remove LocationMiniMap component (not needed, main map is on the side)
- Convert RouteStepper to use daisyUI steps-horizontal
- Update hub page and CalcResultContent to remove unused props
This commit is contained in:
Ruslan Bakiev
2026-01-15 00:33:17 +07:00
parent f03554893b
commit 0337cebc63
5 changed files with 19 additions and 143 deletions

View File

@@ -60,14 +60,11 @@
<template #card="{ item }">
<OfferResultCard
:source-name="item.name"
:location-name="getOfferData(item.uuid)?.locationName"
:product-name="selectedProductName"
:price-per-unit="getOfferData(item.uuid)?.pricePerUnit"
:currency="getOfferData(item.uuid)?.currency"
:unit="getOfferData(item.uuid)?.unit"
:latitude="item.latitude"
:longitude="item.longitude"
:stages="item.stages"
/>
</template>