We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a5befd5 commit 905ea78Copy full SHA for 905ea78
1 file changed
src/commands/workflows/list.ts
@@ -53,6 +53,10 @@ export default class Workflows extends Command {
53
header: 'Id',
54
get: (row) => row.id,
55
},
56
+ active: {
57
+ header: 'Active',
58
+ get: (row) => row.active === undefined ? true : row.active,
59
+ },
60
61
{ printLine: this.log },
62
)
0 commit comments