ux: tooltip of commit signing status icon

* do NOT show signer if it is not available
* new tooltip style

Signed-off-by: leo <longshuang@msn.cn>
This commit is contained in:
leo 2024-10-30 15:01:08 +08:00
parent 4e87b25765
commit 195325187d
No known key found for this signature in database
3 changed files with 23 additions and 10 deletions

View file

@ -26,7 +26,7 @@
return new Models.CommitSignInfo()
{
VerifyResult = lines[0][0],
Signer = string.IsNullOrEmpty(lines[1]) ? "<UnKnown>" : lines[1],
Signer = lines[1],
Key = lines[2]
};