Skip to content

Commit

Permalink
Fix Code Transform not starting (#5160)
Browse files Browse the repository at this point in the history
`onCustomFormAction` was not delegating to `codetransform` button click handler
  • Loading branch information
rli authored Dec 4, 2024
1 parent 3245c4f commit dbedbc1
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"type" : "bugfix",
"description" : "Fix issue where Amazon Q Code Transform is unable to start"
}
3 changes: 3 additions & 0 deletions plugins/amazonq/mynah-ui/src/mynah-ui/ui/connector.ts
Original file line number Diff line number Diff line change
Expand Up @@ -542,6 +542,9 @@ export class Connector {
case 'codetest':
this.codeTestChatConnector.onFormButtonClick(tabId, messageId ?? '', action)
break
case 'codetransform':
this.codeTransformChatConnector.onFormButtonClick(tabId, action)
break
case 'doc':
this.docChatConnector.onFormButtonClick(tabId, action)
break
Expand Down

0 comments on commit dbedbc1

Please sign in to comment.