1
0
mirror of https://github.com/trezor/trezor-wallet synced 2025-04-05 01:45:45 +00:00

fix localized value for xrp fee select

This commit is contained in:
slowbackspace 2019-04-29 15:51:55 +02:00
parent b58cff72ff
commit 9a083dff87
2 changed files with 8 additions and 2 deletions

View File

@ -415,7 +415,7 @@ export const getFeeLevels = (
// map BlockchainFeeLevel to SendFormReducer FeeLevel
const levels = feeLevels.map(level => ({
value: level.name,
localizedValue: l10nFeeMap[level.value] || level.value,
localizedValue: l10nFeeMap[level.value],
fee: level.value,
label: `${toDecimalAmount(level.value, network.decimals)} ${network.symbol}`,
}));

View File

@ -445,7 +445,13 @@ const AccountSend = (props: Props) => {
options={feeLevels}
formatOptionLabel={option => (
<FeeOptionWrapper>
<OptionValue>{option.value}</OptionValue>
<OptionValue>
{option.localizedValue ? (
<FormattedMessage {...option.localizedValue} />
) : (
option.value
)}
</OptionValue>
<OptionLabel>{option.label}</OptionLabel>
</FeeOptionWrapper>
)}