Skip to content
This repository has been archived by the owner on Mar 7, 2023. It is now read-only.

Commit

Permalink
fix(schedule): history of assistant assignments not being shown
Browse files Browse the repository at this point in the history
  • Loading branch information
rhahao authored Jun 9, 2022
1 parent 0a92c4a commit 81c51e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/schedule/StudentSelector.js
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ const StudentSelector = (props) => {
assID === 15 ||
assID === 17
) {
filteredHistory = dbHistory.filter((item) => item.assignmentID === 8);
filteredHistory = dbHistory.filter((item) => item.assignmentID === 109);
} else {
filteredHistory = dbHistory.filter(
(item) => item.assignmentID === assType
Expand Down

0 comments on commit 81c51e0

Please sign in to comment.