Skip to content

Commit

Permalink
M #~: Fix filesystem select in sunstone (#719)
Browse files Browse the repository at this point in the history
  • Loading branch information
Sergio Betanzos committed Jan 28, 2021
1 parent 34c7d1f commit 083bec9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Expand Up @@ -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;
Expand All @@ -78,7 +78,7 @@ define(function(require) {
return TemplateHTML({
"diskTabId": this.diskTabId,
"imageTableSelectHTML": this.imageTable.dataTableHTML,
"pepe": optionsFilesystem()
"optionsFilesystem": optionsFilesystem()
});
}

Expand Down
Expand Up @@ -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">
Expand Down

0 comments on commit 083bec9

Please sign in to comment.