Commit 3edd58e3 by CaIon

修复渠道余额显示问题

parent dbdfebcc
...@@ -134,7 +134,7 @@ const ChannelsTable = () => { ...@@ -134,7 +134,7 @@ const ChannelsTable = () => {
<Tag color='white' type='ghost' size='large'>{renderQuota(record.used_quota)}</Tag> <Tag color='white' type='ghost' size='large'>{renderQuota(record.used_quota)}</Tag>
</Tooltip> </Tooltip>
<Tooltip content={'剩余额度,点击更新'}> <Tooltip content={'剩余额度,点击更新'}>
<Tag color='white' type='ghost' size='large' onClick={() => {updateChannelBalance(record)}}>{renderQuota(record.balance)}</Tag> <Tag color='white' type='ghost' size='large' onClick={() => {updateChannelBalance(record)}}>${record.balance}</Tag>
</Tooltip> </Tooltip>
</Space> </Space>
</div> </div>
......
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