Skip to content
Snippets Groups Projects
Commit e778866a authored by srosse's avatar srosse
Browse files

OO-4468: fix search by id in lectures management

parent b2879868
No related branches found
No related tags found
No related merge requests found
...@@ -931,7 +931,7 @@ public class LectureBlockDAO { ...@@ -931,7 +931,7 @@ public class LectureBlockDAO {
query.setParameter("managerKey", searchParams.getManager().getKey()); query.setParameter("managerKey", searchParams.getManager().getKey());
} }
if(refId != null) { if(refId != null) {
query.setParameter("refId", refId); query.setParameter("idKey", refId);
} }
if(StringHelper.containsNonWhitespace(fuzzyString)) { if(StringHelper.containsNonWhitespace(fuzzyString)) {
query.setParameter("fuzzyString", fuzzyString); query.setParameter("fuzzyString", fuzzyString);
......
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