Skip to content

Commit

Permalink
Fix up
Browse files Browse the repository at this point in the history
  • Loading branch information
steverydz committed Aug 2, 2023
1 parent e6f5c9e commit 4696d89
Showing 1 changed file with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -130,19 +130,22 @@ function SigningKeysTable({ setShowDisableSuccessNotification }: Props) {
},
{
content: "Policies",
sortKey: "policy",
className: "u-align--right",
},
{
content: "Models",
sortKey: "models",
className: "u-align--right",
},
{
content: "Created date",
className: "u-align--right",
sortKey: "created-at",
className: "u-align--right",
},
{
content: "fingerprint",
sortKey: "fingerprint",
className: "u-align--right",
},
{
Expand Down Expand Up @@ -206,7 +209,10 @@ function SigningKeysTable({ setShowDisableSuccessNotification }: Props) {
],
sortData: {
name: signingKey.name,
policies: signingKey?.policies?.length,
models: signingKey?.models?.length,
"created-at": signingKey["created-at"],
fingerprint: signingKey.fingerprint,
},
};
})}
Expand Down

0 comments on commit 4696d89

Please sign in to comment.