namely the filtering while preserving the original string, it's just one line, but having a shorthand for it still makes it a bit nicer
Signed-off-by: Dominik Csapak <[email protected]> --- www/manager6/Parser.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/www/manager6/Parser.js b/www/manager6/Parser.js index c3772d3b..bc6a4338 100644 --- a/www/manager6/Parser.js +++ b/www/manager6/Parser.js @@ -604,5 +604,9 @@ Ext.define('PVE.Parser', { }); return [res, extradata]; }, + + filterPropertyStringList: function(list, filterFn, defaultKey) { + return list.filter((entry) => filterFn(PVE.Parser.parsePropertyString(entry, defaultKey))); + }, }, }); -- 2.30.2 _______________________________________________ pve-devel mailing list [email protected] https://lists.proxmox.com/cgi-bin/mailman/listinfo/pve-devel
