mirror of
https://github.com/maxgoedjen/secretive.git
synced 2026-09-19 14:48:01 +02:00
Reenable multilineinfoview
This commit is contained in:
@@ -43,22 +43,18 @@ struct SecretDetailView<SecretType: Secret>: View {
|
||||
text: URL.publicKeyPath(for: secret, in: URL.publicKeyDirectory),
|
||||
showRevealInFinder: true
|
||||
)
|
||||
// if !certificates.isEmpty {
|
||||
// Spacer()
|
||||
// .frame(height: 20)
|
||||
// MultilineInfoView(
|
||||
// title: .secretDetailCertificatePathLabel,
|
||||
// image: Image(
|
||||
// systemName: "checkmark.seal.text.page"
|
||||
// ),
|
||||
// items: certificates.map({ certificate in
|
||||
// MultilineInfoView.Item(
|
||||
// text: certificate.name,
|
||||
// action: (Image(systemName: "chevron.forward"), { navigateToCertificate?(certificate) })
|
||||
// )
|
||||
// })
|
||||
// )
|
||||
// }
|
||||
if !certificates.isEmpty {
|
||||
Spacer()
|
||||
.frame(height: 20)
|
||||
MultilineInfoView(title: .secretDetailCertificatePathLabel, image: Image(systemName: "checkmark.seal.text.page")) {
|
||||
ForEach(certificates) { certificate in
|
||||
Text(certificate.name)
|
||||
.multilineItemAction(image: Image(systemName: "chevron.forward")) {
|
||||
navigateToCertificate?(certificate)
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Spacer()
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user