Commit 5f5333eb by Calcium-Ion Committed by GitHub

Merge pull request #1181 from feitianbubu/fix-balance-unit-sync

fix: balance unit sync
parents be71bbb6 c821b0ed
......@@ -256,7 +256,7 @@ const ChannelsTable = () => {
{renderQuota(record.used_quota)}
</Tag>
</Tooltip>
<Tooltip content={t('剩余额度') + record.balance + t(',点击更新')}>
<Tooltip content={t('剩余额度$') + record.balance + t(',点击更新')}>
<Tag
color='white'
type='ghost'
......@@ -265,7 +265,7 @@ const ChannelsTable = () => {
prefixIcon={<Coins size={14} />}
onClick={() => updateChannelBalance(record)}
>
${renderNumberWithPoint(record.balance)}
{renderQuotaWithAmount(record.balance)}
</Tag>
</Tooltip>
</Space>
......
......@@ -854,7 +854,7 @@ export function renderQuotaWithAmount(amount) {
if (displayInCurrency) {
return '$' + amount;
} else {
return renderUnitWithQuota(amount);
return renderNumber(renderUnitWithQuota(amount));
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment