From a758617dc60783f61e1a66dacecf4239548020a5 Mon Sep 17 00:00:00 2001 From: Mael Date: Fri, 12 Jul 2019 12:34:48 +0200 Subject: [PATCH] =?UTF-8?q?:bug:=20R=C3=A9tablissement=20de=20la=20r=C3=A9?= =?UTF-8?q?mun=C3=A9ration=20brute?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit La variable était mal nommée et donc la requête de règle aussi --- source/components/PaySlipSections.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/source/components/PaySlipSections.js b/source/components/PaySlipSections.js index 7ad866b5c..c006ca9e4 100644 --- a/source/components/PaySlipSections.js +++ b/source/components/PaySlipSections.js @@ -8,7 +8,7 @@ export let SalaireBrutSection = ({ getRule }) => { ), indemnitésSalarié = getRule('contrat salarié . indemnités salarié'), salaireDeBase = getRule('contrat salarié . salaire . brut de base'), - salaireBrut = getRule('contrat salarié . salaire . brut') + rémunérationBrute = getRule('contrat salarié . rémunération . brut') return (
@@ -19,8 +19,8 @@ export let SalaireBrutSection = ({ getRule }) => { indemnitésSalarié.nodeValue !== 0) && } {avantagesEnNature.nodeValue !== 0 && } {indemnitésSalarié.nodeValue !== 0 && } - - + +
) }