Skip to content

Commit 905ea78

Browse files
committed
feat (cli): display active on workflow list
1 parent a5befd5 commit 905ea78

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

src/commands/workflows/list.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,10 @@ export default class Workflows extends Command {
5353
header: 'Id',
5454
get: (row) => row.id,
5555
},
56+
active: {
57+
header: 'Active',
58+
get: (row) => row.active === undefined ? true : row.active,
59+
},
5660
},
5761
{ printLine: this.log },
5862
)

0 commit comments

Comments
 (0)