Skip to content

Commit

Permalink
fix and instand of or #471
Browse files Browse the repository at this point in the history
  • Loading branch information
schefbi authored Nov 22, 2022
1 parent 4c1cfac commit 971b81b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/events/utils/events.ts
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ export function getEventState(course: Course): Option<EventStateWithLabel> {
if (
HasEvaluationStarted === false &&
HasTestGrading === true &&
(course.StatusId !== DEFINITIVELY_EVALUATED_STATUS_ID || course.StatusId !== REVIEW_EVALUATED_STATUS_ID)
(course.StatusId !== DEFINITIVELY_EVALUATED_STATUS_ID && course.StatusId !== REVIEW_EVALUATED_STATUS_ID)
) {
// Tests erfassen
return {
Expand Down

0 comments on commit 971b81b

Please sign in to comment.