From 26f0033c60578b64bc3774a43a715382f92a6c46 Mon Sep 17 00:00:00 2001 From: AI Assistant Date: Sat, 28 Feb 2026 18:55:04 +0200 Subject: [PATCH] fix: NAS attachment overflow in detail sheet + vault filter reset - Detail sheet: add overflow-hidden to ScrollArea content wrapper so NAS attachment cards with long paths don't push badges/copy icon beyond the sheet boundary - Password vault: reset category filter to 'all' and clear search after adding/editing an entry so user sees the new entry immediately instead of landing on a filtered empty view --- src/modules/password-vault/components/password-vault-module.tsx | 2 ++ src/modules/registratura/components/registry-entry-detail.tsx | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/modules/password-vault/components/password-vault-module.tsx b/src/modules/password-vault/components/password-vault-module.tsx index ca5a007..7396d30 100644 --- a/src/modules/password-vault/components/password-vault-module.tsx +++ b/src/modules/password-vault/components/password-vault-module.tsx @@ -237,6 +237,8 @@ export function PasswordVaultModule() { } setViewMode("list"); setEditingEntry(null); + updateFilter("category", "all"); + updateFilter("search", ""); }; const handleDeleteConfirm = async () => { diff --git a/src/modules/registratura/components/registry-entry-detail.tsx b/src/modules/registratura/components/registry-entry-detail.tsx index 69f0b0f..91a9f0e 100644 --- a/src/modules/registratura/components/registry-entry-detail.tsx +++ b/src/modules/registratura/components/registry-entry-detail.tsx @@ -219,7 +219,7 @@ export function RegistryEntryDetail({ -
+
{/* ── Status row ── */}