There was an error while loading. Please reload this page.
1 parent 47700b3 commit df5f1a1Copy full SHA for df5f1a1
1 file changed
tilework.ui/Components/Pages/CertificateManagement/CertificateList.razor
@@ -17,13 +17,15 @@
17
<MudTh>Status</MudTh>
18
<MudTh>Key algorithm</MudTh>
19
<MudTh>Expiration</MudTh>
20
+ <MudTh>CA</MudTh>
21
</HeaderContent>
22
<RowContent>
23
<MudTd DataLabel="Name"><MudLink Href="@($"/cm/certificates/{context.Id}")">@context.Name</MudLink></MudTd>
24
<MudTd DataLabel="FQDN">@context.Fqdn</MudTd>
25
<MudTd DataLabel="Status">@context.Status</MudTd>
26
<MudTd DataLabel="Key algorithm">@context.PrivateKey.Algorithm.GetDescription()</MudTd>
27
<MudTd DataLabel="Expiration">@context.ExpiresAtUtc</MudTd>
28
+ <MudTd DataLabel="CA">@context.Authority.Name</MudTd>
29
</RowContent>
30
</GenericListview>
31
0 commit comments