From 0452f9068cf26caaa1ca7c3ae2cbe895fba6b170 Mon Sep 17 00:00:00 2001 From: Daniel Molina Date: Fri, 6 Nov 2015 10:27:15 +0100 Subject: [PATCH] feature #4083: Enable network graphs for ec2(cherry picked from commit 50fe6a7e09664b19609caa453124eed4e56afeaa) --- src/sunstone/public/app/opennebula/vm.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sunstone/public/app/opennebula/vm.js b/src/sunstone/public/app/opennebula/vm.js index 5843a77fb9..57b8533022 100644 --- a/src/sunstone/public/app/opennebula/vm.js +++ b/src/sunstone/public/app/opennebula/vm.js @@ -583,7 +583,7 @@ define(function(require) { function isNICGraphsSupported(element) { var history = retrieveLastHistoryRecord(element) if (history) { - return $.inArray(history.VMMMAD, ['vcenter', 'ec2', 'az', 'sl']) == -1; + return $.inArray(history.VMMMAD, ['vcenter', 'az', 'sl']) == -1; } else { return false; }