|
|
@@ -6,7 +6,7 @@ import {
|
|
|
showSuccess,
|
|
|
timestamp2string,
|
|
|
renderGroup,
|
|
|
- renderNumberWithPoint,
|
|
|
+ renderQuotaWithAmount,
|
|
|
renderQuota
|
|
|
} from '../../helpers/index.js';
|
|
|
|
|
|
@@ -328,7 +328,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'
|
|
|
@@ -336,7 +336,7 @@ const ChannelsTable = () => {
|
|
|
shape='circle'
|
|
|
onClick={() => updateChannelBalance(record)}
|
|
|
>
|
|
|
- ${renderNumberWithPoint(record.balance)}
|
|
|
+ {renderQuotaWithAmount(record.balance)}
|
|
|
</Tag>
|
|
|
</Tooltip>
|
|
|
</Space>
|