🐛 Affichage de la valeur de /règle en € seulement si format €

Mais ça reste un bout de code crade, qui devrait être mis en commun
entre tous les endroits où l'on affiche la valeur d'une règle
pull/337/head
Mael 2018-09-10 14:05:55 +02:00
parent dcf5e86f97
commit 5737030ef9
1 changed files with 8 additions and 4 deletions

View File

@ -78,10 +78,14 @@ export default class Rule extends Component {
{displayedRule.nodeValue ? (
<div id="ruleValue">
<i className="fa fa-calculator" aria-hidden="true" />{' '}
{Intl.NumberFormat(language, {
style: 'currency',
currency: 'EUR'
}).format(displayedRule.nodeValue)}
{displayedRule.format === 'euros'
? Intl.NumberFormat(language, {
style: 'currency',
currency: 'EUR'
}).format(displayedRule.nodeValue)
: typeof displayedRule.nodeValue !== 'object'
? displayedRule.nodeValue
: null}
</div>
) : null}