Skip to content
Snippets Groups Projects
Commit 23950b2a authored by Thilo Wischmeyer's avatar Thilo Wischmeyer Committed by Thilo Wischmeyer
Browse files

Added student to fields searched by feedback history search bar

parent b9f730da
No related branches found
No related tags found
1 merge request!276Make feedback history searchable by student name.
Pipeline #217099 canceled
...@@ -131,6 +131,7 @@ export default class FeedbackTable extends Vue { ...@@ -131,6 +131,7 @@ export default class FeedbackTable extends Vue {
queryFoundInFields(f: Feedback): boolean { queryFoundInFields(f: Feedback): boolean {
return f.ofSubmissionType !== undefined && this.queryFoundInString(f.ofSubmissionType) || return f.ofSubmissionType !== undefined && this.queryFoundInString(f.ofSubmissionType) ||
this.exerciseMode && f.ofStudent !== undefined && this.queryFoundInString(f.ofStudent) ||
f.created !== undefined && this.queryFoundInString(f.created) || f.created !== undefined && this.queryFoundInString(f.created) ||
f.modified !== undefined && this.queryFoundInString(f.modified) f.modified !== undefined && this.queryFoundInString(f.modified)
} }
......
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