mirror of
https://github.com/OpenNebula/one.git
synced 2025-03-16 22:50:10 +03:00
Feature #3748: Fix wrong selector in host wilds panel
This commit is contained in:
parent
1719050284
commit
60a282fae0
@ -75,9 +75,12 @@ define(function(require) {
|
||||
wilds = [wilds];
|
||||
}
|
||||
|
||||
i = 0;
|
||||
|
||||
$.each(wilds, function() {
|
||||
var name = this.VM_NAME;
|
||||
var safe_name = name.replace(/ /g, "_").replace(/\./g, "_");
|
||||
var safe_name = i;
|
||||
i += 1;
|
||||
var deploy_id = this.DEPLOY_ID;
|
||||
|
||||
var wilds_list_array = [
|
||||
|
Loading…
x
Reference in New Issue
Block a user