Skip to content

Commit c5ac409

Browse files
kichunyaLana243
authored andcommitted
Unckable links fix (#539)
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
1 parent c0569df commit c5ac409

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

Diff for: vscode-plugin/src/config/notificationMessages.ts

+4-2
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,14 @@ export const targetNotUsed = "There is no used target. Use any in UTBot Targets
1313

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

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

2426

0 commit comments

Comments
 (0)