-
Notifications
You must be signed in to change notification settings - Fork 518
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix(amazonq): replace icons with text #6398
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"type": "Bug Fix", | ||
"description": "/transform: replace icons in Transformation Hub with text" | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -239,9 +239,11 @@ | |
"AWS.command.codewhisperer.openReferencePanel": "Open Code Reference Log", | ||
"AWS.command.q.transform.acceptChanges": "Accept", | ||
"AWS.command.q.transform.rejectChanges": "Reject", | ||
"AWS.command.q.transform.showChanges": "Show Proposed Changes", | ||
"AWS.command.q.transform.showChangeSummary": "Show Transformation Summary", | ||
"AWS.command.q.transform.showTransformationPlan": "Show Transformation Plan", | ||
"AWS.command.q.transform.stopJobInHub": "Stop job", | ||
"AWS.command.q.transform.viewJobProgress": "View job progress", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It wasn't clear until I saw the picture, but do we really need "View" as the prefix for all of these? Why not "Stop Job", "Job Progress" (or just Progress), "Status", "Plan", "Summary"? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Fair point, right now in JB we have the "View", but can double check on this and revert in a future PR if we decide to go in that direction There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Should probably just sync with a UX person quickly before merging, since its just a couple of string changes |
||
"AWS.command.q.transform.viewJobStatus": "View job status", | ||
"AWS.command.q.transform.showTransformationPlan": "View plan", | ||
"AWS.command.q.transform.showChangeSummary": "View summary", | ||
"AWS.command.threatComposer.createNew": "Create New Threat Composer File", | ||
"AWS.command.threatComposer.newFile": "Threat Composer File", | ||
"AWS.threatComposer.page.title": "{0} (Threat Composer)", | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The changes show up automatically after downloading so this didn't do anything.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is probably a dumb question but the
aws.amazonq.transformationHub.reviewChanges.reveal
command is used instartTransformByQ
andtransformationResultsViewProvider
, does this removal affect anything?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That's a good question! This command is registered here:
aws-toolkit-vscode/packages/core/src/codewhisperer/service/transformByQ/transformationResultsViewProvider.ts
Line 358 in 01351dd
So as long as we keep that we are good. These few lines deleted here just remove a "View Proposed Changes" button that we used to have, since it's not useful because the proposed changes open automatically after downloading.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ohh this makes sense, thank you!