Skip to content
Snippets Groups Projects
Commit 170b022d authored by dcz's avatar dcz
Browse files

Bugfix #77

parent 97e8c86c
Branches
Tags
No related merge requests found
......@@ -16,7 +16,7 @@ function setup_entries_list(options) {
columns: [
{ data: 'lemma' },
{ data: 'POS' },
{ render: (_1, _2, data) => (data && data.lexical_units && data.lexical_units.some(lu => lu.assignee_username !== null)) ? gettext("nie") : gettext("tak") },
{ render: (_1, _2, data) => (data && data.lexical_units && data.lexical_units.every(lu => lu.assignee_username !== null)) ? gettext("nie") : gettext("tak") },
can_see_assignees ? { data: 'assignee_username' } : { render: is_assigned_to_user_renderer },
],
selectEntryId: options.selectEntryId,
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment