Skip to content

Commit 1052d3d

Browse files
committed
update
1 parent d46ca84 commit 1052d3d

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
lines changed

package-lock.json

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -520,7 +520,7 @@
520520
"@aws-sdk/s3-request-presigner": "<3.696.0",
521521
"@aws-sdk/smithy-client": "<3.696.0",
522522
"@aws-sdk/util-arn-parser": "<3.696.0",
523-
"@aws/mynah-ui": "^4.25.1",
523+
"@aws/mynah-ui": "^4.26.0-beta.5",
524524
"@gerhobbelt/gitignore-parser": "^0.2.0-9",
525525
"@iarna/toml": "^2.2.5",
526526
"@smithy/fetch-http-handler": "^3.0.0",

packages/core/package.nls.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -329,8 +329,8 @@
329329
"AWS.amazonq.context.files.description": "Add a file to context",
330330
"AWS.amazonq.context.prompts.title": "Prompts",
331331
"AWS.amazonq.context.prompts.description": "Add a saved prompt to context",
332-
"AWS.amazonq.context.symbols.title": "Code",
333-
"AWS.amazonq.context.symbols.description": "Add symbols to context",
332+
"AWS.amazonq.context.code.title": "Code",
333+
"AWS.amazonq.context.code.description": "Add code to context",
334334
"AWS.amazonq.savedPrompts.title": "Prompt name",
335335
"AWS.amazonq.savedPrompts.create": "Create",
336336
"AWS.amazonq.savedPrompts.action": "Create a new prompt",

packages/core/src/amazonq/lsp/lspController.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -445,7 +445,7 @@ export class LspController {
445445
this._contextCommandSymbolsUpdated = false
446446
return false
447447
},
448-
{ interval: 1000, timeout: 30_000, truthy: true }
448+
{ interval: 1000, timeout: 60_000, truthy: true }
449449
)
450450
}
451451
}

packages/core/src/codewhispererChat/controllers/chat/controller.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -447,14 +447,14 @@ export class ChatController {
447447
icon: 'file' as MynahIconsType,
448448
},
449449
{
450-
command: i18n('AWS.amazonq.context.symbols.title'),
450+
command: i18n('AWS.amazonq.context.code.title'),
451451
children: [
452452
{
453-
groupName: i18n('AWS.amazonq.context.symbols.title'),
453+
groupName: i18n('AWS.amazonq.context.code.title'),
454454
commands: [],
455455
},
456456
],
457-
description: i18n('AWS.amazonq.context.symbols.description'),
457+
description: i18n('AWS.amazonq.context.code.description'),
458458
icon: 'code-block' as MynahIconsType,
459459
},
460460
{

0 commit comments

Comments
 (0)