From 9505f2971229b582320340ceb6782ca1d20ae652 Mon Sep 17 00:00:00 2001 From: Chika Date: Wed, 26 May 2021 14:15:59 +0300 Subject: [PATCH] fix selectQuote validation --- .../Effects/actions/calculate/validate/elements.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/client/stores/CalculationStore/Effects/actions/calculate/validate/elements.ts b/src/client/stores/CalculationStore/Effects/actions/calculate/validate/elements.ts index 298ce8c..8174fdf 100644 --- a/src/client/stores/CalculationStore/Effects/actions/calculate/validate/elements.ts +++ b/src/client/stores/CalculationStore/Effects/actions/calculate/validate/elements.ts @@ -23,7 +23,7 @@ const CUSTOM_CONDITIONS: TElements< const quote = calculationStore.getValue('quote'); return ( calculationStore.getValue('recalcWithRevision') === true && - !CONDITIONS.IS_NULL(quote) + CONDITIONS.IS_NULL(quote) ); }, tbxVehicleTaxInYear: calculationStore => {