mirror of
https://github.com/linux-do/new-api.git
synced 2025-11-11 00:23:42 +08:00
渠道余额改为保留两位小数
This commit is contained in:
@@ -143,7 +143,7 @@ const ChannelsTable = () => {
|
||||
<Tag color='white' type='ghost' size='large'>{renderQuota(record.used_quota)}</Tag>
|
||||
</Tooltip>
|
||||
<Tooltip content={'剩余额度,点击更新'}>
|
||||
<Tag color='white' type='ghost' size='large' onClick={() => {updateChannelBalance(record)}}>${record.balance}</Tag>
|
||||
<Tag color='white' type='ghost' size='large' onClick={() => {updateChannelBalance(record)}}>${record.balance.toFixed(2)}</Tag>
|
||||
</Tooltip>
|
||||
</Space>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user