diff --git a/frontend/src/components/CourseCard.vue b/frontend/src/components/CourseCard.vue
index daf76c4a..5dd1e3c6 100644
--- a/frontend/src/components/CourseCard.vue
+++ b/frontend/src/components/CourseCard.vue
@@ -2,28 +2,23 @@
-
-
+
+
{{ __('Featured') }}
{{ tag }}
diff --git a/frontend/src/components/Modals/EvaluationModal.vue b/frontend/src/components/Modals/EvaluationModal.vue
index 825e38ed..b103a4f2 100644
--- a/frontend/src/components/Modals/EvaluationModal.vue
+++ b/frontend/src/components/Modals/EvaluationModal.vue
@@ -130,11 +130,14 @@ function submitEvaluation(close) {
close()
},
onError(err) {
+ let message = err.messages?.[0] || err
+ let unavailabilityMessage = message.includes('unavailable')
+
createToast({
- title: 'Error',
- text: err.messages?.[0] || err,
- icon: 'x',
- iconClasses: 'bg-red-600 text-white rounded-md p-px',
+ title: unavailabilityMessage ? 'Evaluator is Unavailable' : 'Error',
+ text: message,
+ icon: unavailabilityMessage ? 'alert-circle' : 'x',
+ iconClasses: 'bg-yellow-600 text-white rounded-md p-px',
position: 'top-center',
timeout: 10,
})
diff --git a/frontend/src/pages/CertifiedParticipants.vue b/frontend/src/pages/CertifiedParticipants.vue
index 57881aca..583a1061 100644
--- a/frontend/src/pages/CertifiedParticipants.vue
+++ b/frontend/src/pages/CertifiedParticipants.vue
@@ -18,7 +18,10 @@