Skip to content

Commit

Permalink
Unckable links fix (#539)
Browse files Browse the repository at this point in the history
Add links in "SARIF and SFTP not install" warnings in vscode plugin. Now it looks like " Please, install MS Sarif Viewer" and install is clickable. Bug #461
  • Loading branch information
kichunya authored and Lana243 committed Nov 21, 2022
1 parent c0569df commit c5ac409
Showing 1 changed file with 4 additions and 2 deletions.
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

0 comments on commit c5ac409

Please sign in to comment.