Skip to content

Commit

Permalink
RotationConfigForm: Change rotation mode render order
Browse files Browse the repository at this point in the history
  • Loading branch information
sukhwinder33445 committed Mar 4, 2025
1 parent 41595b9 commit 7ebf99b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions application/forms/RotationConfigForm.php
Original file line number Diff line number Diff line change
Expand Up @@ -582,9 +582,9 @@ protected function assembleModeSelection(): string
$value = $this->getPopulatedValue('mode');

$modes = [
'24-7' => $this->translate('24/7'),
'partial' => $this->translate('Partial Day'),
'multi' => $this->translate('Multi Day')
'multi' => $this->translate('Multi Day'),
'24-7' => $this->translate('24/7')
];

$modeList = new HtmlElement('ul');
Expand Down

0 comments on commit 7ebf99b

Please sign in to comment.