fix: preserve group field in manifest during cmd_edit

The ManifestEntry was being written with group: None instead of
preserving the entry's existing group value during edits.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
adlee-was-taken
2026-04-12 09:27:43 -04:00
parent 7baec1cd67
commit eae8fd4a24

View File

@@ -681,7 +681,7 @@ fn cmd_edit(query: String) -> Result<()> {
name: name.clone(), name: name.clone(),
url, url,
username, username,
group: None, group: updated_entry.group,
updated_at: now, updated_at: now,
}, },
); );