FileBrowser: support 'virtual'/'v' file type

Denotes objects like disks ".img.fidx" files, which shouldn't be
downloadable, but should still approximate a directory entry.

Signed-off-by: Stefan Reiter <s.reiter@proxmox.com>
This commit is contained in:
Stefan Reiter 2021-04-22 17:34:56 +02:00 committed by Thomas Lamprecht
parent 661faeedf5
commit c1c8cfa85b

View File

@ -36,6 +36,9 @@ Ext.define('proxmox-file-tree', {
case 's': // socket
icon = 'plug';
break;
case 'v': // virtual
icon = 'cube';
break;
default:
icon = 'file-o';
break;
@ -217,6 +220,7 @@ Ext.define("Proxmox.window.FileBrowser", {
case 'l': return gettext('Softlink');
case 'p': return gettext('Pipe/Fifo');
case 's': return gettext('Socket');
case 'v': return gettext('Virtual');
default: return Proxmox.Utils.unknownText;
}
},