This commit is contained in:
Masroor Ehsan 2025-01-07 17:16:16 +06:00
parent 59f74f0e3f
commit a2911dc394
2 changed files with 2 additions and 2 deletions

View File

@ -7,5 +7,5 @@ enum Priority: int
case Low = 0;
case Routine = 50;
case High = 75;
case Urgent = 100;
case Stat = 100;
}

View File

@ -270,7 +270,7 @@ public function getPriorityIcon(): string
</span>';
return match ($this->priority) {
Priority::Urgent => sprintf($tpl, 'danger', 'light-emergency-on'),
Priority::Stat => sprintf($tpl, 'danger', 'light-emergency-on'),
Priority::High => sprintf($tpl, 'primary', 'bolt'),
Priority::Low => sprintf($tpl, 'light', 'chevrons-down'),
default => '',