utils: followup: fix base class

Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
This commit is contained in:
Thomas Lamprecht 2021-07-02 15:17:47 +02:00
parent e722f108aa
commit cd20320b7f

View File

@ -253,12 +253,12 @@ utilities: {
},
render_username: function(userid) {
let username = PVE.Utils.parse_userid(userid)[0] || "";
let username = Proxmox.Utils.parse_userid(userid)[0] || "";
return Ext.htmlEncode(username);
},
render_realm: function(userid) {
let username = PVE.Utils.parse_userid(userid)[1] || "";
let username = Proxmox.Utils.parse_userid(userid)[1] || "";
return Ext.htmlEncode(username);
},