event-history.phtml: Don't sort events by time

Sort only by day and date

(cherry picked from commit 762630c02730cf79e7395443fe37feb708697143)
This commit is contained in:
Sukhwinder Dhillon 2022-09-06 14:45:04 +02:00 committed by Johannes Meyer
parent 28f66a4aff
commit 068e98495c

View File

@ -30,7 +30,7 @@ $history->limit($limit * $page);
?>
<div class="content">
<?php
$dateFormatter = new IntlDateFormatter(setlocale(LC_TIME, 0), IntlDateFormatter::FULL, IntlDateFormatter::LONG);
$dateFormatter = new IntlDateFormatter(setlocale(LC_TIME, 0), IntlDateFormatter::FULL, IntlDateFormatter::NONE);
$lastDate = null;
$flappingMsg = $this->translate('Flapping with a %.2f%% state change rate');
$rowAction = Url::fromPath('monitoring/event/show');