We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents a9f7b85 + 798ff71 commit f1e43c2Copy full SHA for f1e43c2
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