Skip to content
Closed
Show file tree
Hide file tree
Changes from all 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
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"type": "Bug Fix",
"description": "Fix bug when Q chat webview occasionally freezes and become gray"
}
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -524,7 +524,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.27.0",
"@aws/mynah-ui": "^4.28.0",
"@gerhobbelt/gitignore-parser": "^0.2.0-9",
"@iarna/toml": "^2.2.5",
"@smithy/fetch-http-handler": "^5.0.1",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -577,13 +577,7 @@ export class ChatController {
id: contextCommandItem.id,
icon: 'folder' as MynahIconsType,
})
}
// TODO: Remove the limit of 25k once the performance issue of mynahUI in webview is fixed.
else if (
contextCommandItem.symbol &&
symbolsCmd.children &&
symbolsCmd.children[0].commands.length < 25_000
) {
} else if (contextCommandItem.symbol && symbolsCmd.children) {
symbolsCmd.children?.[0].commands.push({
command: contextCommandItem.symbol.name,
description: `${contextCommandItem.symbol.kind}, ${path.join(wsFolderName, contextCommandItem.relativePath)}, L${contextCommandItem.symbol.range.start.line}-${contextCommandItem.symbol.range.end.line}`,
Expand Down
Loading