Skip to content

Commit f0d6016

Browse files
committed
RunList: add flavor column to runs page
Based on ceph/paddles#137 Signed-off-by: Matan Breizman <mbreizma@redhat.com>
1 parent 54c9eb7 commit f0d6016

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

src/components/RunList/index.tsx

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -137,6 +137,11 @@ const _columns: MRT_ColumnDef<Run>[] = [
137137
header: "branch",
138138
maxSize: 70,
139139
},
140+
{
141+
accessorKey: "flavor",
142+
header: "flavor",
143+
maxSize: 20,
144+
},
140145
{
141146
accessorKey: "machine_type",
142147
header: "machine type",

src/lib/paddles.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,7 @@ export type Run = {
8181
status: RunStatus;
8282
user: string;
8383
priority: number;
84+
flavor: string;
8485
};
8586

8687
export type Node = {

0 commit comments

Comments
 (0)