Skip to content

Commit 26e5edb

Browse files
[CAP-9236] fix "service id" err typo when validating TaskRunInput (#291)
GitOrigin-RevId: e36f0e087898171f24e02cad60f9ffa794c0245a
1 parent a637efa commit 26e5edb

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

pkg/tui/views/workflows/types.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ func (t TaskRunListInput) Validate(interactive bool) error {
5050

5151
func (t TaskRunInput) Validate(interactive bool) error {
5252
if !interactive && t.TaskID == "" {
53-
return errors.New("service id must be specified when output is not interactive")
53+
return errors.New("task id must be specified when output is not interactive")
5454
}
5555

5656
if !interactive && t.Input == "" {

0 commit comments

Comments
 (0)