feat: enhance SendsPage with notes display and update VaultPage for improved filtering and history tracking

This commit is contained in:
shuaiplus
2026-03-01 06:37:03 +08:00
committed by Shuai
parent bb50617b16
commit 0e823e80a6
5 changed files with 160 additions and 39 deletions
+1 -1
View File
@@ -251,7 +251,7 @@ export async function createFolder(
}
export async function getCiphers(authedFetch: (input: string, init?: RequestInit) => Promise<Response>): Promise<Cipher[]> {
const resp = await authedFetch('/api/ciphers');
const resp = await authedFetch('/api/ciphers?deleted=true');
if (!resp.ok) throw new Error('Failed to load ciphers');
const body = await parseJson<ListResponse<Cipher>>(resp);
return body?.data || [];