Skip to content

Commit

Permalink
feat: add generation column to spaces renderInfo command
Browse files Browse the repository at this point in the history
  • Loading branch information
k80bowman committed Oct 18, 2024
1 parent af5fcb8 commit bec18a8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/cli/src/lib/spaces/spaces.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,10 @@ export function renderInfo(space: Heroku.Space, json: boolean) {
State: space.state,
Shield: displayShieldState(space),
'Outbound IPs': displayNat(space.outbound_ips),
Generation: space.generation,
'Created at': space.created_at,
},
['ID', 'Team', 'Region', 'CIDR', 'Data CIDR', 'State', 'Shield', 'Outbound IPs', 'Created at'],
['ID', 'Team', 'Region', 'CIDR', 'Data CIDR', 'State', 'Shield', 'Outbound IPs', 'Generation', 'Created at'],
)
}
}

0 comments on commit bec18a8

Please sign in to comment.