Skip to content

Commit 529da80

Browse files
fix(feat): add tooltip and set default mode to on (aws#6983)
## Problem The pair-program was off by default and there was no tooltip. ## Solution ![image](https://github.com/user-attachments/assets/47455803-056f-4f69-9eb1-7bc4eeac05e5) --- - Treat all work as PUBLIC. Private `feature/x` branches will not be squash-merged at release time. - Your code changes must meet the guidelines in [CONTRIBUTING.md](https://github.com/aws/aws-toolkit-vscode/blob/master/CONTRIBUTING.md#guidelines). - License: I confirm that my contribution is made under the terms of the Apache 2.0 license.
1 parent 1b81576 commit 529da80

File tree

3 files changed

+13
-7
lines changed

3 files changed

+13
-7
lines changed

package-lock.json

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

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
"@vscode/test-electron": "^2.3.8",
5555
"@vscode/test-web": "^0.0.65",
5656
"@vscode/vsce": "^2.19.0",
57-
"eslint": "^8.56.0",
57+
"eslint": "^8.57.0",
5858
"eslint-config-prettier": "^9.1.0",
5959
"eslint-plugin-aws-toolkits": "file:plugins/eslint-plugin-aws-toolkits",
6060
"eslint-plugin-header": "^3.1.1",

packages/core/src/amazonq/webview/ui/tabs/generator.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,8 @@ export class TabDataGenerator {
7878
{
7979
type: 'toggle',
8080
id: 'prompt-type',
81-
value: 'ask',
81+
value: 'pair-programming-on',
82+
tooltip: 'Pair programmar on',
8283
options: [
8384
{
8485
value: 'pair-programming-on',

0 commit comments

Comments
 (0)