#40: Support for remote Windows mounts - partial

This commit is contained in:
2019-10-01 17:11:07 -05:00
parent 686774741f
commit 6a7c471f46
11 changed files with 82 additions and 20 deletions

View File

@@ -88,7 +88,9 @@ class Configuration extends IPCContainer {
advanced: template[key] ? template[key].advanced : false,
label: key,
remote: template[key] ? template[key].remote : false,
value: config[key],
value: (template[key] && (template[key].type === 'object')) ?
config[key] :
config[key].toString(),
};
})
.filter(i=> {
@@ -99,7 +101,6 @@ class Configuration extends IPCContainer {
}
return ret;
});
return {
ObjectList: objectList,
ItemList: itemList,