Skip to content

Commit 067ba9b

Browse files
committed
p
1 parent b86208a commit 067ba9b

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

plugins/amazonq/mynah-ui/src/mynah-ui/ui/connector.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -224,6 +224,9 @@ export class Connector {
224224
case 'codescan':
225225
this.codeScanChatConnector.help(tabID)
226226
break
227+
case 'welcome':
228+
this.cwChatConnector.help(tabID)
229+
break
227230
}
228231
}
229232

plugins/amazonq/mynah-ui/src/mynah-ui/ui/quickActions/handler.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ export class QuickActionHandler {
134134

135135
private handleHelpCommand(tabID: string) {
136136
// User entered help action, so change the tab type to 'cwc' if it's an unknown tab
137-
if (this.tabsStorage.getTab(tabID)?.type === 'unknown' || this.tabsStorage.getTab(tabID)?.type === 'welcome') {
137+
if (this.tabsStorage.getTab(tabID)?.type === 'unknown') {
138138
this.tabsStorage.updateTabTypeFromUnknown(tabID, 'cwc')
139139
}
140140

0 commit comments

Comments
 (0)