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

B #5507: Fix VNC button cloud view (#1414)

(cherry picked from commit 2dcfa3bcc3d6bce9aba3b78cc30c63725e8b1008)
This commit is contained in:
Frederick Borges 2021-08-20 13:23:46 +02:00 committed by Tino Vazquez
parent a3cd18cf8e
commit c8cbe20164

View File

@ -334,7 +334,7 @@ define(function(require) {
var is_rdp_allowed = Boolean(OpenNebulaVM.isConnectionSupported(data, 'rdp'));
var is_ssh_allowed = Boolean(OpenNebulaVM.isConnectionSupported(data, 'ssh'));
$('.dropdown-menu-css', context).toggle(state.str === "RUNNING");
$('.dropdown-menu-css', context).toggle(state.str === Locale.tr("RUNNING"));
$(".provision_spice_button", context).parent().toggle(is_spice_allowed);
$(".provision_wfile_button", context).parent().toggle(is_virt_viewer_allowed);