Skip to content
This repository has been archived by the owner on May 31, 2024. It is now read-only.

Commit

Permalink
Fix missing Type & State info for get launchplans cmd
Browse files Browse the repository at this point in the history
  • Loading branch information
pbrogan12 committed Jul 30, 2023
1 parent 145bc5c commit bf4af9c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cmd/get/launch_plan.go
Original file line number Diff line number Diff line change
Expand Up @@ -125,8 +125,8 @@ Usage
var launchplanColumns = []printer.Column{
{Header: "Version", JSONPath: "$.id.version"},
{Header: "Name", JSONPath: "$.id.name"},
{Header: "Type", JSONPath: "$.closure.compiledTask.template.type"},
{Header: "State", JSONPath: "$.spec.state"},
{Header: "Type", JSONPath: "$.id.resourceType"},
{Header: "State", JSONPath: "$.closure.state"},
{Header: "Schedule", JSONPath: "$.spec.entityMetadata.schedule"},
{Header: "Inputs", JSONPath: "$.closure.expectedInputs.parameters." + printer.DefaultFormattedDescriptionsKey + ".var.description"},
{Header: "Outputs", JSONPath: "$.closure.expectedOutputs.variables." + printer.DefaultFormattedDescriptionsKey + ".description"},
Expand Down

0 comments on commit bf4af9c

Please sign in to comment.