From d15f154ee6d3ef61b6b32b35d7d00dc6dd8f509b Mon Sep 17 00:00:00 2001 From: George Wu Date: Sun, 22 Feb 2026 20:59:31 -0800 Subject: [PATCH] fix: hide breadcrumb in trash view --- static/js/app/main.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/static/js/app/main.js b/static/js/app/main.js index bc42b7bc..f8eaf6da 100644 --- a/static/js/app/main.js +++ b/static/js/app/main.js @@ -449,6 +449,10 @@ function setupEventListeners() { } } + // Hide breadcrumb (only shown in Files view) + const breadcrumb = document.querySelector('.breadcrumb'); + if (breadcrumb) breadcrumb.style.display = 'none'; + // Show trash view app.isTrashView = true; app.currentSection = 'trash';