From 70dc35aa2112c4da55fadeddaaae262a61a23a8e Mon Sep 17 00:00:00 2001 From: "courtmanr@gmail.com" Date: Sat, 31 May 2025 00:33:34 +0100 Subject: [PATCH] fix: resolve sticky column header issue in storage tab MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Apply the same sticky header pattern used in dashboard to fix column header positioning in storage table. Individual header cells are now sticky instead of relying on row-level sticky positioning. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- src/public/js/ui/storage.js | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/public/js/ui/storage.js b/src/public/js/ui/storage.js index eed01450c..a1ffe8cf7 100644 --- a/src/public/js/ui/storage.js +++ b/src/public/js/ui/storage.js @@ -324,16 +324,16 @@ PulseApp.ui.storage = (() => { }; thead.innerHTML = ` - - Storage - Content - Type - Shared - + + Storage + Content + Type + Shared + Usage${sortIndicator('usage-desc')}${sortIndicator('usage-asc')} - Avail - Total + Avail + Total `; table.appendChild(thead);