🐛 fix(tokens-table): show all extra IP addresses in tooltip

Previously, the tooltip that appears when more than one IP address is configured
skipped the second IP (`ips.slice(2)`), so users could not see it unless they
expanded the list in another way.
Changed the slice start index to `1`, ensuring that **every IP after the first
display tag** is included in the tooltip (`ips.slice(1).join(', ')`).

File affected:
- web/src/components/table/TokensTable.js
This commit is contained in:
t0ng7u
2025-07-12 03:48:55 +08:00
parent 0a434d3b3a
commit dca38d01d6

View File

@@ -294,7 +294,7 @@ const TokensTable = () => {
ipTags.push(
<Tooltip
key='extra'
content={ips.slice(2).join(', ')}
content={ips.slice(1).join(', ')}
position='top'
showArrow
>