diff --git a/apps/web/process/recalc/reactions.ts b/apps/web/process/recalc/reactions.ts index eedd5d2..074cd9c 100644 --- a/apps/web/process/recalc/reactions.ts +++ b/apps/web/process/recalc/reactions.ts @@ -153,7 +153,7 @@ export function common({ store, apolloClient }: ProcessContext) { reaction( () => $calculation.$values.getValues(['firstPaymentPerc', 'recalcWithRevision']), ({ firstPaymentPerc, recalcWithRevision }) => { - if (firstPaymentPerc === 0 && recalcWithRevision === true) { + if (firstPaymentPerc === 0 || recalcWithRevision === true) { agents.forEach((elementName) => $calculation.$status.overrideStatus(elementName, 'Disabled') );