mirror of
https://github.com/OpenNebula/one.git
synced 2025-02-14 01:57:24 +03:00
M #~: Fix filesystem select in sunstone (#719)
This commit is contained in:
parent
34c7d1fbb5
commit
083bec9844
@ -68,7 +68,7 @@ define(function(require) {
|
||||
var rtn = "";
|
||||
if(config && config.system_config && config.system_config.support_fs && Array.isArray(config.system_config.support_fs)){
|
||||
config.system_config.support_fs.forEach(element => {
|
||||
rtn += "<option>"+element+"</option>";
|
||||
rtn += "<option value='"+element+"'>"+element+"</option>";
|
||||
});
|
||||
}
|
||||
return rtn;
|
||||
@ -78,7 +78,7 @@ define(function(require) {
|
||||
return TemplateHTML({
|
||||
"diskTabId": this.diskTabId,
|
||||
"imageTableSelectHTML": this.imageTable.dataTableHTML,
|
||||
"pepe": optionsFilesystem()
|
||||
"optionsFilesystem": optionsFilesystem()
|
||||
});
|
||||
}
|
||||
|
||||
|
@ -100,7 +100,7 @@
|
||||
{{tr "Filesystem"}}
|
||||
</label>
|
||||
<select class="hypervisor only_kvm" wizard_field="FS" id="TYPE_KVM" name="type">
|
||||
{{{pepe}}}
|
||||
{{{optionsFilesystem}}}
|
||||
</select>
|
||||
</div>
|
||||
<div class="medium-6 columns">
|
||||
|
Loading…
x
Reference in New Issue
Block a user