Don't delete public cert keys corrresponding to secretive-tracked keys (#417)

This commit is contained in:
Max Goedjen
2022-10-26 22:46:43 -07:00
committed by GitHub
parent fa0e81cd8e
commit 47d736cb0d
2 changed files with 20 additions and 5 deletions

View File

@@ -21,7 +21,7 @@ struct SecretDetailView<SecretType: Secret>: View {
CopyableView(title: "Public Key", image: Image(systemName: "key"), text: keyString)
Spacer()
.frame(height: 20)
CopyableView(title: "Public Key Path", image: Image(systemName: "lock.doc"), text: publicKeyFileStoreController.path(for: secret))
CopyableView(title: "Public Key Path", image: Image(systemName: "lock.doc"), text: publicKeyFileStoreController.publicKeyPath(for: secret))
Spacer()
}
}