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

Commit bf4af9c

Browse files
committed
Fix missing Type & State info for get launchplans cmd
1 parent 145bc5c commit bf4af9c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cmd/get/launch_plan.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -125,8 +125,8 @@ Usage
125125
var launchplanColumns = []printer.Column{
126126
{Header: "Version", JSONPath: "$.id.version"},
127127
{Header: "Name", JSONPath: "$.id.name"},
128-
{Header: "Type", JSONPath: "$.closure.compiledTask.template.type"},
129-
{Header: "State", JSONPath: "$.spec.state"},
128+
{Header: "Type", JSONPath: "$.id.resourceType"},
129+
{Header: "State", JSONPath: "$.closure.state"},
130130
{Header: "Schedule", JSONPath: "$.spec.entityMetadata.schedule"},
131131
{Header: "Inputs", JSONPath: "$.closure.expectedInputs.parameters." + printer.DefaultFormattedDescriptionsKey + ".var.description"},
132132
{Header: "Outputs", JSONPath: "$.closure.expectedOutputs.variables." + printer.DefaultFormattedDescriptionsKey + ".description"},

0 commit comments

Comments
 (0)