From 1eb6256469d85eb9a61afcd58e1c6c56f2849140 Mon Sep 17 00:00:00 2001 From: Zhiting Lin Date: Wed, 14 Nov 2018 14:39:36 +0800 Subject: [PATCH] fixed the unclear transaltions. --- src/features/transactions/components/Show.jsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/features/transactions/components/Show.jsx b/src/features/transactions/components/Show.jsx index 28ec7cd..60ebb5e 100644 --- a/src/features/transactions/components/Show.jsx +++ b/src/features/transactions/components/Show.jsx @@ -113,8 +113,7 @@ class Show extends BaseShow { {label: t('form.timestamp'), value: unconfirmedItem ? '-' : moment.unix(item.timestamp).format()}, {label: t('form.blockId'), value: unconfirmedItem? '-' : item.blockId}, {label: t('form.blockHeight'), value: unconfirmedItem? - t('transaction.unconfirmedItem'): - t('transaction.confirmation', {count: item.blockHeight})}, + t('transaction.unconfirmedItem'): item.blockHeight }, {label: t('form.position'), value: unconfirmedItem? '-' :item.position}, {label: 'Gas', value: gas}, {label: t('form.txStatus'), value: status} -- 2.11.0