mirror of
https://github.com/shuaiplus/nodewarden.git
synced 2026-06-20 13:00:39 +00:00
feat: enhance search functionality by including cipher ID in search text
This commit is contained in:
@@ -306,9 +306,10 @@ export default function VaultPage(props: VaultPageProps) {
|
|||||||
const name = String(cipher.decName || cipher.name || '');
|
const name = String(cipher.decName || cipher.name || '');
|
||||||
const username = String(cipher.login?.decUsername || '');
|
const username = String(cipher.login?.decUsername || '');
|
||||||
const uri = firstCipherUri(cipher);
|
const uri = firstCipherUri(cipher);
|
||||||
|
const cipherId = String(cipher.id || '').trim();
|
||||||
meta.set(cipher.id, {
|
meta.set(cipher.id, {
|
||||||
name,
|
name,
|
||||||
searchText: `${name}\n${username}\n${uri}`.toLowerCase(),
|
searchText: `${cipherId}\n${cipherId.replace(/-/g, '')}\n${name}\n${username}\n${uri}`.toLowerCase(),
|
||||||
firstUri: uri,
|
firstUri: uri,
|
||||||
typeKey: cipherTypeKey(Number(cipher.type || 1)),
|
typeKey: cipherTypeKey(Number(cipher.type || 1)),
|
||||||
sortTime: sortTimeValue(cipher),
|
sortTime: sortTimeValue(cipher),
|
||||||
|
|||||||
Reference in New Issue
Block a user