Skip to content

Commit 3bcc9ea

Browse files
Merge branch 'main' into samgst/NotificationResourceResolver
2 parents de5c8be + e6d503d commit 3bcc9ea

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"type" : "bugfix",
3+
"description" : "Fix for /review LLM based code issues for file review on windows"
4+
}

plugins/amazonq/codewhisperer/jetbrains-community/resources/META-INF/plugin-codewhisperer.xml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -114,9 +114,10 @@
114114

115115

116116
<group id="aws.toolkit.codewhisperer.toolbar.security">
117-
<group id="codewhisperer.toolbar.security.filter" icon="com.intellij.icons.ExpUiIcons.General.Filter" text="Filter" popup="true" >
117+
<group id="codewhisperer.toolbar.security.filter" icon="AllIcons.General.Filter" text="Filter" popup="true">
118118
<separator text="Severity"/>
119-
<action class="software.aws.toolkits.jetbrains.services.codewhisperer.codescan.actions.CodeWhispererCodeScanFilterGroup" text="Severity"/>
119+
<group id="CodeWhispererCodeScanFilterGroup"
120+
class="software.aws.toolkits.jetbrains.services.codewhisperer.codescan.actions.CodeWhispererCodeScanFilterGroup" text="Severity"/>
120121
</group>
121122
</group>
122123

plugins/amazonq/codewhisperer/jetbrains-community/src/software/aws/toolkits/jetbrains/services/codewhisperer/codescan/sessionconfig/CodeScanSessionConfig.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ class CodeScanSessionConfig(
169169
append("+++ b/")
170170
append(project.name)
171171
append('/')
172-
append(fileNio.relativeTo(projectRootNio).pathString)
172+
append(fileNio.relativeTo(projectRootNio).toString().replace(File.separator, "/"))
173173
}
174174
} catch (e: Exception) {
175175
LOG.debug(e) { "Failed to create git diff" }

0 commit comments

Comments
 (0)