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

Commit

Permalink
fix: fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
YCK1130 committed Aug 22, 2024
1 parent 7a7600e commit 19f86d8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions application/jira/v0/config/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -1161,7 +1161,7 @@
"type": "object"
},
"output": {
"description": "Create an issue in Jira",
"description": "Update an issue in Jira",
"instillUIOrder": 0,
"$ref": "#/$defs/issue",
"title": "Output",
Expand Down Expand Up @@ -1419,7 +1419,7 @@
"type": "object"
},
"output": {
"description": "Create a sprint in Jira",
"description": "Update a sprint in Jira",
"instillUIOrder": 0,
"$ref": "#/$defs/sprint",
"title": "Output",
Expand Down
2 changes: 1 addition & 1 deletion application/jira/v0/issues.go
Original file line number Diff line number Diff line change
Expand Up @@ -459,7 +459,7 @@ func (jiraClient *Client) updateIssueTask(ctx context.Context, props *structpb.S
if _, err = jiraClient.updateIssue(ctx, &input); err != nil {
return nil, errmsg.AddMessage(
fmt.Errorf("failed to update issue with parent key"),
"You can only move issues to epics.",
"You can only move issues to epics. The Jira API response with: "+errmsg.Message(err),
)
}
}
Expand Down

0 comments on commit 19f86d8

Please sign in to comment.