Skip to content
Snippets Groups Projects
Commit 8c4a2cf8 authored by Moul's avatar Moul Committed by poka
Browse files

identity show: switch received and issued certs position (!30)

* identity show: switch received and issued certs position

Make more sense to me, you receive from the left and issue to the right

That’s how they are presented in Cesium and Silkaj
parent e28cb96e
No related branches found
No related tags found
1 merge request!30identity show: switch received and issued certs position
......@@ -211,15 +211,15 @@ impl std::fmt::Display for IdtyView {
writeln!(f, "Status: {:?}", self.status)?;
writeln!(
f,
"Certifications: issued {}, received {}",
self.cert_issued_count, self.cert_received_count
"Certifications: received {}, issued {}",
self.cert_received_count, self.cert_issued_count
)?;
if let Some(smith) = &self.smith {
writeln!(f, "Smith status: {:?}", smith.status)?;
writeln!(
f,
"Smith certs: issued {}, received {}",
smith.cert_issued_count, smith.cert_received_count
"Smith certs: received {}, issued {}",
smith.cert_received_count, smith.cert_issued_count
)?;
}
let a = self.linked_account.len();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment