Merge pull request #3233 from KiGamji/round-remaining-balance

Round remaining balance
This commit is contained in:
Seefs
2026-03-15 00:58:33 +08:00
committed by GitHub
2 changed files with 15 additions and 4 deletions

View File

@@ -537,7 +537,12 @@ export const getChannelsColumns = ({
</Tag>
</Tooltip>
<Tooltip
content={t('剩余额度$') + record.balance + t(',点击更新')}
content={
t('剩余额度') +
': ' +
renderQuotaWithAmount(record.balance) +
t(',点击更新')
}
>
<Tag
color='white'