Skip to content
Snippets Groups Projects
Commit b5a9a651 authored by Rajmund Hruška's avatar Rajmund Hruška
Browse files

Fix: Use original data type. (Redmine issue: #7052)

parent e4fb871b
No related branches found
No related tags found
No related merge requests found
...@@ -63,7 +63,7 @@ def build_related_search_params(item): ...@@ -63,7 +63,7 @@ def build_related_search_params(item):
'st_to': item.dt_to, 'st_to': item.dt_to,
'severities': item.severity, 'severities': item.severity,
'categories': 'Test', 'categories': 'Test',
'groups': ', '.join([group.name for group in item.groups]), 'groups': [group.name for group in item.groups],
'submit': gettext('Search') 'submit': gettext('Search')
} }
if not item.flag_testdata: if not item.flag_testdata:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment