mirror of https://github.com/apache/cloudstack.git
CLOUDSTACK-6412: Fix localization for 'isdedicated' field
This commit is contained in:
parent
b04cc75065
commit
e6b8aedc54
|
|
@ -16074,12 +16074,12 @@
|
|||
var hostItem = json.listdedicatedhostsresponse.dedicatedhost[0];
|
||||
if (hostItem.domainid != null) {
|
||||
$.extend(item, hostItem, {
|
||||
isdedicated: 'label.yes'
|
||||
isdedicated: _l('label.yes')
|
||||
});
|
||||
}
|
||||
} else
|
||||
$.extend(item, {
|
||||
isdedicated: 'label.no'
|
||||
isdedicated: _l('label.no')
|
||||
})
|
||||
},
|
||||
error: function (json) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue