1
0
mirror of https://github.com/OpenNebula/one.git synced 2025-03-22 18:50:08 +03:00

M #~: Fix group quotas on cloud view (#143)

(cherry picked from commit cb4c08ca13e60ef0c5eb798a79ee380891cd6bda)
This commit is contained in:
Sergio Betanzos 2020-07-31 13:55:46 +02:00 committed by Tino Vazquez
parent 830c34c3bd
commit 0958011a3d
No known key found for this signature in database
GPG Key ID: 2FE9C32E94AEABBE

View File

@ -105,11 +105,10 @@ define(function(require) {
if (
that &&
that.element &&
that.element.MONITORING &&
that.element.MONITORING.HOST_SHARE &&
that.element.MONITORING.HOST_SHARE.NUMA_NODES
that.element.HOST_SHARE &&
that.element.HOST_SHARE.NUMA_NODES
) {
var numaNodes = that.element.MONITORING.HOST_SHARE.NUMA_NODES.NODE;
var numaNodes = that.element.HOST_SHARE.NUMA_NODES.NODE;
if (!(numaNodes instanceof Array)) {
numaNodes = [numaNodes];
}