Commit 2c8f104f by t0ng7u

馃悰 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
parent e8a58687
...@@ -294,7 +294,7 @@ const TokensTable = () => { ...@@ -294,7 +294,7 @@ const TokensTable = () => {
ipTags.push( ipTags.push(
<Tooltip <Tooltip
key='extra' key='extra'
content={ips.slice(2).join(', ')} content={ips.slice(1).join(', ')}
position='top' position='top'
showArrow showArrow
> >
......
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