Skip to content

Commit

Permalink
Disable sort.
Browse files Browse the repository at this point in the history
Update themes.
  • Loading branch information
kbecker42 committed Dec 14, 2022
1 parent 1422fe8 commit f226d83
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pybossa/themes/default
3 changes: 2 additions & 1 deletion test/test_web.py
Original file line number Diff line number Diff line change
Expand Up @@ -9695,7 +9695,8 @@ def test_browse_task_display_info_columns_sort_completed_by(self):
res = self.app.get('project/%s/tasks/browse?display_columns=["task_id","priority","pcomplete","lock_status","completed_by"]&order_by=completed_by+desc' % (project.short_name), follow_redirects=True)

# Confirm the correct columns are displayed.
assert "class=\" sort-desc sortable\" data-sort=\"completed_by\"" in str(res.data), "Missing sorted column indicator (sort-desc) on Completed By."
#assert "class=\" sort-desc sortable\" data-sort=\"completed_by\"" in str(res.data), "Missing sorted column indicator (sort-desc) on Completed By."
assert res.status_code == 200

@with_context
def test_browse_task_display_info_columns_sort_priority(self):
Expand Down

0 comments on commit f226d83

Please sign in to comment.