diff --git a/src/client/Components/Calculation/ELT/Content/Kasko/lib/composeRequest.ts b/src/client/Components/Calculation/ELT/Content/Kasko/lib/composeRequest.ts index 6675a3a..aeb39c3 100644 --- a/src/client/Components/Calculation/ELT/Content/Kasko/lib/composeRequest.ts +++ b/src/client/Components/Calculation/ELT/Content/Kasko/lib/composeRequest.ts @@ -96,8 +96,8 @@ export default function (this: ICalculationStore) { notConfirmedGlassesDamagesSpecified = false, notConfirmedDamages, notConfirmedDamagesSpecified = false, - selfIgnition = false, - selfIgnitionSpecified = false, + selfIgnition, + selfIgnitionSpecified, outsideRoads, outsideRoadsSpecified = false; if ( @@ -109,8 +109,8 @@ export default function (this: ICalculationStore) { notConfirmedGlassesDamagesSpecified = true; notConfirmedDamages = 2; notConfirmedDamagesSpecified = true; - // selfIgnition = true; - selfIgnitionSpecified = true; + selfIgnition = true; + selfIgnitionSpecified = getSpecified(selfIgnition); outsideRoads = true; outsideRoadsSpecified = true; }