diff --git a/www/manager6/qemu/HardwareView.js b/www/manager6/qemu/HardwareView.js index 20f54cbe..94324323 100644 --- a/www/manager6/qemu/HardwareView.js +++ b/www/manager6/qemu/HardwareView.js @@ -33,7 +33,13 @@ Ext.define('PVE.qemu.HardwareView', { icon = ""; metaData.tdCls += " pve-itype-fa"; } - return icon + txt; + + // only return icons in grid but not remove dialog + if (rowIndex !== undefined) { + return icon + txt; + } else { + return txt; + } }, initComponent : function() {