From 09a979962418078a8c2415edc39fec58f415fe2d Mon Sep 17 00:00:00 2001 From: Chris Redelinghuys Date: Tue, 13 Jan 2026 10:45:24 -0500 Subject: [PATCH] CASH-2114: Copy over Childparts when swapping OEM glass --- src/layouts/quote/quote.vue | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/layouts/quote/quote.vue b/src/layouts/quote/quote.vue index bd7a09944..0bd095b77 100644 --- a/src/layouts/quote/quote.vue +++ b/src/layouts/quote/quote.vue @@ -995,6 +995,8 @@ export default { (altPart) => altPart.partType === partTypeStrings.WINDSHIELD ); if (altPartToUse) { + let childParts = this.lineItems.glassParts[index].childParts; + altPartToUse.childParts = childParts; this.lineItems.glassParts[index] = altPartToUse; } }