Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 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" : "bugfix",
"description" : "fix findings not being populated in the display panel"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can you elaborate this to make it clear?
like Code review findings are not being populated in the display panel something like this!

}
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ data class FlareCodeScanIssue(
val language: String,
val autoDetected: Boolean,
val filePath: String,
val findingContext: String,
val findingContext: String?,
)

data class AggregatedCodeScanIssue(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -910,7 +910,7 @@ codewhisperer.codescan.regenerate_fix_button_label=Regenerate Fix
codewhisperer.codescan.run_scan_complete=<html><body> Code Review completed for {0, choice, 1#1 file|2#{0,number} files}. {1, choice, 0#No issues|1#1 issue|2#{1,number} issues} found in {2}. <font color="{3}"> Last Run {4} </font></body></html>
codewhisperer.codescan.run_scan_error=Amazon Q encountered an error while reviewing for code issues. Please try again later.
codewhisperer.codescan.run_scan_error_telemetry=Code Review failed.
codewhisperer.codescan.run_scan_info=Enter /review in Amazon Q Chat Panel to run code reviews.
codewhisperer.codescan.run_scan_info=Ask the agent in Amazon Q Chat Panel to run code reviews.
codewhisperer.codescan.scan_complete_count=- {0}: `{1, choice, 1#{1,number} issue|2#{1,number} issues}`
codewhisperer.codescan.scan_complete_file=Reviewing your File is complete. Here's what I found:
codewhisperer.codescan.scan_complete_project=Reviewing your Project is complete. Here's what I found:
Expand Down
Loading