Skip to content
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: use fspath to get correct path [IDE-398] #469

Merged
merged 2 commits into from
Jun 11, 2024
Merged
Show file tree
Hide file tree
Changes from all 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
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Snyk Security Changelog

## [2.12.1]
- Fix Code Suggestion rendering issue on Windows.

## [2.12.0]
- Renders the AI Fix panel and adds more custom styling for VSCode.
- Adds position line interaction.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ export class CodeSuggestionWebviewProvider
'suggestion',
'suggestionLS.css',
);
const ideStyle = readFileSync(ideStylePath.path, 'utf8');
const ideStyle = readFileSync(ideStylePath.fsPath, 'utf8');
const ideScriptPath = vscode.Uri.joinPath(
vscode.Uri.file(this.context.extensionPath),
'out',
Expand All @@ -137,7 +137,7 @@ export class CodeSuggestionWebviewProvider
'suggestion',
'codeSuggestionWebviewScriptLS.js',
);
const ideScript = readFileSync(ideScriptPath.path, 'utf8');
const ideScript = readFileSync(ideScriptPath.fsPath, 'utf8');
html = html.replace('${ideStyle}', '<style nonce=${nonce}>' + ideStyle + '</style>');
html = html.replace('${ideScript}', '<script nonce=${nonce}>' + ideScript + '</script>');
const nonce = getNonce();
Expand Down
Loading