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

F #4569: Hot disk resize on vcenter (#177)

Signed-off-by: Frederick Borges <fborges@opennebula.io>
This commit is contained in:
Frederick Borges 2020-09-03 12:16:11 +02:00 committed by GitHub
parent e0111785ec
commit 74b47ff681
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -348,18 +348,8 @@ define(function(require) {
if (Config.isTabActionEnabled("vms-tab", "VM.disk_resize")) {
if (validateState(that,"VM.disk_resize") && !disk.CONTEXT) {
if(Array.isArray(that.element.HISTORY_RECORDS.HISTORY)){
var historyLenght = that.element.HISTORY_RECORDS.HISTORY.length - 1;
if(that.element.LCM_STATE != "3" || that.element.HISTORY_RECORDS.HISTORY[historyLenght].VM_MAD != "vcenter"){
actions += ('<a class="disk_resize nowrap" >\
<i class="fas fa-expand-arrows-alt fa-fw" title="Resize"></i></a>');
}
} else {
if(that.element.LCM_STATE != "3" || that.element.HISTORY_RECORDS.HISTORY.VM_MAD != "vcenter"){
actions += ('<a class="disk_resize nowrap" >\
<i class="fas fa-expand-arrows-alt fa-fw" title="Resize"></i></a>');
}
}
actions += ('<a class="disk_resize nowrap" >\
<i class="fas fa-expand-arrows-alt fa-fw" title="Resize"></i></a>');
}
}
}