we only want to show that icon in the tree when the storage is solely used for importing, not when it's just one of several content types.
Signed-off-by: Dominik Csapak <d.csa...@proxmox.com> --- www/manager6/Utils.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/manager6/Utils.js b/www/manager6/Utils.js index 287d651a..782bb59f 100644 --- a/www/manager6/Utils.js +++ b/www/manager6/Utils.js @@ -1244,7 +1244,7 @@ Ext.define('PVE.Utils', { // templates objType = 'template'; status = type; - } else if (type === 'storage' && record.content.indexOf('import') !== -1) { + } else if (type === 'storage' && record.content === 'import') { return 'fa fa-cloud-download'; } else { // everything else -- 2.39.2 _______________________________________________ pve-devel mailing list pve-devel@lists.proxmox.com https://lists.proxmox.com/cgi-bin/mailman/listinfo/pve-devel