fix: update assignment status notification keys to include labels prefix

This commit is contained in:
Yoga Pangestu 2026-04-04 01:46:06 +07:00
parent 54e8b3d227
commit 80c1da3d5d

View File

@ -157,14 +157,14 @@ public function submissionStatus(): object
return (object) [
'type' => 'submitted',
'badge_color' => 'success',
'badge_label' => SystemNotification::getByKey('assignment_status.submitted'),
'badge_label' => SystemNotification::getByKey('labels.assignment_status.submitted'),
];
}
return (object) [
'type' => 'none',
'badge_color' => 'danger',
'badge_label' => SystemNotification::getByKey('assignment_status.not_submitted'),
'badge_label' => SystemNotification::getByKey('labels.assignment_status.not_submitted'),
];
}