fix: Temporarily comment buggy code to avoid confusion

This commit is contained in:
Suraj Shetty 2021-01-25 22:09:24 +05:30
parent 60470a9ae6
commit 726d9faaa0

View file

@ -9,7 +9,8 @@ frappe.ui.form.FormViewers = class FormViewers {
let users = this.frm.get_docinfo()['viewers'];
let currently_viewing = users.current.filter(user => user != frappe.session.user);
let avatar_group = frappe.avatar_group(currently_viewing, 5, {'align': 'left', 'overlap': true});
this.parent.empty().append(avatar_group);
// REDESIGN-TODO: fix this
this.parent.empty(); //.append(avatar_group);
}
};