Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -525,7 +525,7 @@
"@aws-sdk/s3-request-presigner": "<3.731.0",
"@aws-sdk/smithy-client": "<3.731.0",
"@aws-sdk/util-arn-parser": "<3.731.0",
"@aws/mynah-ui": "^4.31.0-beta.2",
"@aws/mynah-ui": "^4.31.0-beta.3",
"@gerhobbelt/gitignore-parser": "^0.2.0-9",
"@iarna/toml": "^2.2.5",
"@smithy/fetch-http-handler": "^5.0.1",
Expand Down
1 change: 0 additions & 1 deletion packages/core/src/amazonq/webview/ui/followUps/handler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,6 @@ export class FollowUpInteractionHandler {
if (followUp.prompt !== undefined) {
this.mynahUI.updateStore(tabID, {
loadingChat: true,
cancelButtonWhenLoading: false,
promptInputDisabledState: true,
})
this.mynahUI.addChatItem(tabID, {
Expand Down
1 change: 0 additions & 1 deletion packages/core/src/amazonq/webview/ui/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -471,7 +471,6 @@ export const createMynahUI = (
) {
mynahUI.updateStore(tabID, {
loadingChat: true,
cancelButtonWhenLoading: false,
promptInputDisabledState: true,
})

Expand Down
3 changes: 1 addition & 2 deletions packages/core/src/amazonq/webview/ui/messages/controller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,6 @@ export class MessageController {

this.mynahUI.updateStore(selectedTab.id, {
loadingChat: true,
cancelButtonWhenLoading: false,
promptInputDisabledState: true,
})
this.mynahUI.addChatItem(selectedTab.id, message)
Expand Down Expand Up @@ -120,7 +119,7 @@ export class MessageController {

this.mynahUI.updateStore(newTabID, {
loadingChat: true,
cancelButtonWhenLoading: false,
// cancelButtonWhenLoading: false,
promptInputDisabledState: true,
})

Expand Down
1 change: 0 additions & 1 deletion packages/core/src/amazonq/webview/ui/messages/handler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ export class TextMessageHandler {

this.mynahUI.updateStore(tabID, {
loadingChat: true,
cancelButtonWhenLoading: false,
promptInputDisabledState: true,
})

Expand Down
3 changes: 0 additions & 3 deletions packages/core/src/amazonq/webview/ui/quickActions/handler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,6 @@ export class QuickActionHandler {

this.mynahUI.updateStore(affectedTabId, {
loadingChat: true,
cancelButtonWhenLoading: false,
promptInputDisabledState: true,
})

Expand Down Expand Up @@ -310,7 +309,6 @@ export class QuickActionHandler {
if (currentTabType !== 'unknown' && currentTabType !== 'welcome') {
affectedTabId = this.mynahUI.updateStore('', {
loadingChat: true,
cancelButtonWhenLoading: false,
})
}

Expand All @@ -335,7 +333,6 @@ export class QuickActionHandler {
// disable chat prompt
this.mynahUI.updateStore(affectedTabId, {
loadingChat: true,
cancelButtonWhenLoading: false,
})

this.connector.transform(affectedTabId)
Expand Down
Loading