Move username to top of copy menu; send user to copy menu after creating/editing an entry; allow copying old password from copy menu

This commit is contained in:
2025-11-23 13:40:41 -05:00
parent 23c6d2e354
commit b26c2ce17c
8 changed files with 41 additions and 30 deletions
+2 -2
View File
@@ -44,9 +44,9 @@ func AddEntry(realPath string, hideSecrets bool, entryType uint8) {
// write and preview the new entry
if password != "" {
writeEntryCLI(realPath, decryptedEntry, hideSecrets, true)
writeEntryCLI(realPath, decryptedEntry, hideSecrets, true, "")
} else {
writeEntryCLI(realPath, decryptedEntry, hideSecrets, false)
writeEntryCLI(realPath, decryptedEntry, hideSecrets, false, "")
}
}