Skip to content

Commit 0aa6b6b

Browse files
committed
ui: add time column
1 parent 4d8a9f2 commit 0aa6b6b

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

ui/app/shared/utils/kani.ts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,10 @@ export const center = {
4343
columnHeaderContent: { style: { "justify-content": "center" } },
4444
bodyCell: { style: { "text-align": "center" } }
4545
};
46+
export const right = {
47+
columnHeaderContent: { style: { "justify-content": "flex-end" } },
48+
bodyCell: { style: { "text-align": "right" } }
49+
};
4650

4751
export const MergeKaniColumns: MergeKaniColumn[] = [
4852
{
@@ -61,6 +65,10 @@ export const MergeKaniColumns: MergeKaniColumn[] = [
6165
key: "proof_kind",
6266
col: { field: "proof_kind", header: "Proof Kind", width: "12%", sortable: true, pt: center },
6367
},
68+
{
69+
key: "time",
70+
col: { field: "time", header: "Time (ms)", width: "5%", sortable: true, pt: right },
71+
},
6472
];
6573

6674
export const multiSort: DataTableSortMeta[] = [

0 commit comments

Comments
 (0)