Update SecretListItemView.swift

This commit is contained in:
Max Goedjen 2025-12-13 19:51:00 -08:00 committed by GitHub
parent 595de41f03
commit 7e11458fc3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -27,11 +27,11 @@ struct SecretListItemView: View {
.contextMenu { .contextMenu {
if store is AnySecretStoreModifiable { if store is AnySecretStoreModifiable {
Button(action: { isRenaming = true }) { Button(action: { isRenaming = true }) {
Image(systemName: "pencil") // Image(systemName: "pencil")
Text(.secretListEditButton) Text(.secretListEditButton)
} }
Button(action: { isDeleting = true }) { Button(action: { isDeleting = true }) {
Image(systemName: "trash") // Image(systemName: "trash")
Text(.secretListDeleteButton) Text(.secretListDeleteButton)
} }
} }