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 unclickable SFTP and SARIF links in vscode plugin warnings (Bug #461) #539

Merged
merged 1 commit into from
Nov 16, 2022
Merged
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
6 changes: 4 additions & 2 deletions vscode-plugin/src/config/notificationMessages.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,14 @@ export const targetNotUsed = "There is no used target. Use any in UTBot Targets

// {SFTP
export const defaultSFTP = "Natizyskunk.sftp";
export const installSFTP = "Please, install Natizyskunk SFTP from https://marketplace.visualstudio.com/items?itemName=" + defaultSFTP;
export const SFTP_URL = "https://marketplace.visualstudio.com/items?itemName=Natizyskunk.sftp";
export const installSFTP = `Please, [install](${SFTP_URL}) Natizyskunk SFTP`;
// }SFTP

// {SARIF
export const defaultSARIFViewer = "MS-SarifVSCode.sarif-viewer";
export const installSARIFViewer = "Please, install MS Sarif Viewer from https://marketplace.visualstudio.com/items?itemName=" + defaultSARIFViewer;
export const SARIF_URL = "https://marketplace.visualstudio.com/items?itemName=MS-SarifVSCode.sarif-viewer";
export const installSARIFViewer = `Please, [install](${SARIF_URL}) MS Sarif Viewer`;
// }SARIF


Expand Down