We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0efb8f5 commit 798ff71Copy full SHA for 798ff71
1 file changed
webapp/components/topbar/dialogs/OverwriteModel.js
@@ -39,8 +39,11 @@ const OverwriteModel = (props) => {
39
if (value && value.startsWith('/')) { // We know we will be in a UNIX like env.
40
return value
41
}
42
+
43
+ const actualValue = !value? DEFAULT_DIR: value;
44
45
Utils
- .evalPythonMessage('netpyne_geppetto.getFullPath', [null, value])
46
+ .evalPythonMessage('netpyne_geppetto.getFullPath', [null, actualValue])
47
.then((fullpath) => {
48
setDstPath(`${fullpath}/`)
49
})
0 commit comments