fix: Assignments in listview
This commit is contained in:
parent
7158b15fa9
commit
3e6a6e8488
1 changed files with 1 additions and 1 deletions
|
|
@ -825,7 +825,7 @@ frappe.views.ListView = class ListView extends frappe.views.BaseList {
|
|||
let assigned_users = JSON.parse(doc._assign || "[]");
|
||||
if (assigned_users.length) {
|
||||
// REDESIGN-TODO: Make it filterable?
|
||||
assigned_to = frappe.avatar_group(assigned_users, 3, {'css_class': 'filterable'});
|
||||
assigned_to = frappe.avatar_group(assigned_users, 3, {'css_class': 'filterable'})[0].outerHTML;
|
||||
}
|
||||
|
||||
const comment_count = `<span class="${
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue