From 3311a38aaed7d97a53abd7fa22a701555b4fb7fe Mon Sep 17 00:00:00 2001 From: SergeantPanda Date: Wed, 21 Jan 2026 16:55:25 -0600 Subject: [PATCH] Bug fix: Fixed long IP addresses overlapping adjacent columns in stream connection card by adding truncation with tooltips displaying the full address. (Fixes #712) --- CHANGELOG.md | 1 + frontend/src/components/cards/StreamConnectionCard.jsx | 8 ++++++++ 2 files changed, 9 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 599fb986..14b41dcf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -51,6 +51,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Fixed +- Fixed long IP addresses overlapping adjacent columns in stream connection card by adding truncation with tooltips displaying the full address. (Fixes #712) - Updated streamlink from 8.1.0 to 8.1.2 to fix YouTube live stream playback issues and improve Pluto TV ad detection (Fixes #869) - Fixed date/time formatting across all tables to respect user's UI preferences (time format and date format) set in Settings page: - Stream connection card "Connected" column diff --git a/frontend/src/components/cards/StreamConnectionCard.jsx b/frontend/src/components/cards/StreamConnectionCard.jsx index 1cd99814..bf72b109 100644 --- a/frontend/src/components/cards/StreamConnectionCard.jsx +++ b/frontend/src/components/cards/StreamConnectionCard.jsx @@ -271,6 +271,14 @@ const StreamConnectionCard = ({ { header: 'IP Address', accessorKey: 'ip_address', + size: 150, + cell: ({ cell }) => ( + + + {cell.getValue()} + + + ), }, // Updated Connected column with tooltip {