adds key id to the tooltip, which is shown for unknown keys

This commit is contained in:
Sebastian Sdorra
2020-07-30 13:35:34 +02:00
parent 4112a0b70a
commit f4ab367220
2 changed files with 12 additions and 12 deletions

View File

@@ -62,7 +62,7 @@ const SignatureIcon: FC<Props> = ({ signatures, className }) => {
}
if (signature.status === "NOT_FOUND") {
return `${t("changeset.signatureStatus")}: ${status}`;
return `${t("changeset.signatureStatus")}: ${status}\n${t("changeset.keyId")}: ${signature.keyId}`;
}
let message = `${t("changeset.keyOwner")}: ${signature.owner ? signature.owner : t("changeset.noOwner")}\n${t("changeset.keyId")}: ${signature.keyId}\n${t(