Skip to content
Snippets Groups Projects
Commit dd05c1c5 authored by Emmanuel Raviart's avatar Emmanuel Raviart
Browse files

Remove duplicate declarations

parent 7ff030ee
Branches
Tags 0.0.857
No related merge requests found
Pipeline #17272 passed
...@@ -22,10 +22,17 @@ ...@@ -22,10 +22,17 @@
$: ({ amendement: amendment, base: law, plf: bill } = budgetSimulation.result) $: ({ amendement: amendment, base: law, plf: bill } = budgetSimulation.result)
$: ({ quantiles: amendmentQuantiles, state_budget: amendmentStateBudget } = $: ({
amendment ?? {}) compare_before_after: amendmentPopulationComparison,
quantiles: amendmentQuantiles,
state_budget: amendmentStateBudget,
} = amendment ?? {})
$: ({ quantiles: billQuantiles, state_budget: billStateBudget } = bill ?? {}) $: ({
compare_before_after: billPopulationComparison,
quantiles: billQuantiles,
state_budget: billStateBudget,
} = bill ?? {})
$: ({ quantiles: lawQuantiles, state_budget: lawStateBudget } = law) $: ({ quantiles: lawQuantiles, state_budget: lawStateBudget } = law)
...@@ -39,16 +46,6 @@ ...@@ -39,16 +46,6 @@
// On se dit alors que c'est le cas lorsqu'il y a une réforme (PLF). // On se dit alors que c'est le cas lorsqu'il y a une réforme (PLF).
$: showRevaluation = showBill $: showRevaluation = showBill
$: ({
compare_before_after: amendmentPopulationComparison,
state_budget: amendmentStateBudget,
} = amendment ?? {})
$: ({
compare_before_after: billPopulationComparison,
state_budget: billStateBudget,
} = bill ?? {})
$: ({ compare_before_after: lawPopulationComparison } = law) $: ({ compare_before_after: lawPopulationComparison } = law)
$: budgetVariableName = budgetVariableNameByVariableName[name] $: budgetVariableName = budgetVariableNameByVariableName[name]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment