ui: fix Internet Clients list dividers and layout break on multi-net-id chains - #132
Merged
Conversation
…multi-net-id chains Rows now get a bottom border to visually separate list items. The net-id column is capped in width with ellipsis truncation and a tooltip, since chained sessions can report many net ids and were overflowing the row.
Same layout break as the Internet Clients panel: sessions routed through a proxy chain can report many net ids, and the joined list had no width constraint, so it wrapped across lines and inflated row height. Both spots now truncate with an ellipsis and a tooltip with the full list.
GyulyVGC
approved these changes
Aug 4, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Two UI bugs in the topology dashboard's client/session views:
bottom border divider to each row, matching the divider color already used
elsewhere in the panel (
SpSep).(
nets 133, 102, 106, ...), and the comma-joined list had no widthconstraint anywhere it was rendered. On narrow panels/screens this wrapped
across multiple lines and inflated row height, breaking the layout. Fixed
in all three places that render this list:
InternetPanel.tsx— the Internet Clients side panelDashboard.tsx— the "Active Connections" table's Net ID columnEdgePanel.tsx— the per-session edge side panelThe fix is consistent across all three: truncate with an ellipsis inside a
width-capped, non-wrapping container, and expose the full list via a
titletooltip on hover.