From e87c6ca297609744f8bb6074d7ec50eebb6db8e9 Mon Sep 17 00:00:00 2001 From: Manuel Calavera Date: Fri, 4 Oct 2019 09:22:32 -0700 Subject: [PATCH] fix: comission format on detail page --- src/v2/components/Validators/Detail/index.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/v2/components/Validators/Detail/index.jsx b/src/v2/components/Validators/Detail/index.jsx index 26d7a24e..22e8a5bc 100644 --- a/src/v2/components/Validators/Detail/index.jsx +++ b/src/v2/components/Validators/Detail/index.jsx @@ -119,7 +119,7 @@ const ValidatorsDetail = ({match}: {match: Match}) => { { label: 'commission', hint: '', - value: `${(100 * (commission / 0xff)).toFixed(3)}%`, + value: `${commission} (${(100 * (commission / 0xff)).toFixed(3)}%)`, }, ];