#40: Support for remote Windows mounts - partial
This commit is contained in:
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user