Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion project/ws/viewer/src/lib/routes/quiz/quiz.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ export class QuizComponent implements OnInit, OnDestroy {
question.questionType = 'mcq-sca'
}
})
quizJSON.isAssessment = content.isAssessment || false
quizJSON.isAssessment = content.isAssessment ?? true
}
return quizJSON
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<!-- Header: checkmark badge + label -->
<div class="completed-card__header">
<mat-icon class="completed-check-icon">check_circle</mat-icon>
<span class="completed-card__label">{{ 'COMPETENCY' | translate }}</span>
<span class="completed-card__label">{{ 'Competency' | translate }}</span>
</div>

<!-- Competency name -->
Expand Down
Loading