We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 93a1221 commit 47bd248Copy full SHA for 47bd248
src/webview/newMicroPythonProjectPanel.mts
@@ -557,8 +557,10 @@ print("Finished.")\r\n`;
557
: "/home/user/MyProject"
558
}" disabled value="${
559
// support folder names with backslashes on linux and macOS
560
- this._projectRoot !== undefined && process.platform === "win32"
561
- ? this._projectRoot.fsPath.replaceAll("\\", "/")
+ this._projectRoot !== undefined
+ ? process.platform === "win32"
562
+ ? this._projectRoot.fsPath.replaceAll("\\", "/")
563
+ : this._projectRoot.fsPath
564
: ""
565
}"/>
566
</div>
0 commit comments