mirror of
https://github.com/inventree/InvenTree.git
synced 2025-06-30 18:50:53 +00:00
Fix some regressions in new "Responsible" filter for build orders (#4430)
* fix responsible user/group icons with translations * fix display of active filters after recent changes
This commit is contained in:
@ -2702,7 +2702,7 @@ function loadBuildTable(table, options) {
|
||||
|
||||
var html = row.responsible_detail.name;
|
||||
|
||||
if (row.responsible_detail.label == 'group') {
|
||||
if (row.responsible_detail.label == '{% trans "group" %}') {
|
||||
html += `<span class='float-right fas fa-users'></span>`;
|
||||
} else {
|
||||
html += `<span class='float-right fas fa-user'></span>`;
|
||||
|
Reference in New Issue
Block a user