diff --git a/frontend/src/components/feedback_list/FeedbackTable.vue b/frontend/src/components/feedback_list/FeedbackTable.vue
index 3b6e072423aa520890cb8aa5072ca83deddef404..5a5a491e21a22ab719c59aa0f08e0c4b4d55ff41 100644
--- a/frontend/src/components/feedback_list/FeedbackTable.vue
+++ b/frontend/src/components/feedback_list/FeedbackTable.vue
@@ -131,6 +131,7 @@ export default class FeedbackTable extends Vue {
 
   queryFoundInFields(f: Feedback): boolean {
     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.modified !== undefined && this.queryFoundInString(f.modified)
   }