Fixing report

This commit is contained in:
2025-10-28 11:47:15 +07:00
parent 47f7c7b682
commit fd361f21cf
4 changed files with 84 additions and 29 deletions

View File

@@ -43,7 +43,7 @@ const ListHistoryAlarm = memo(function ListHistoryAlarm(props) {
case 1:
return (
<span>
{record.lim_low + 1} : {record.lim_high - 1}
{record.lim_low} : {record.lim_high}
</span>
);
case 2:
@@ -51,13 +51,13 @@ const ListHistoryAlarm = memo(function ListHistoryAlarm(props) {
case 3:
return (
<span>
{record.lim_low_crash + 1} : {record.lim_low - 1}
{record.lim_low_crash} : {record.lim_low}
</span>
);
case 4:
return (
<span>
{record.lim_high + 1} : {record.lim_high_crash - 1}
{record.lim_high} : {record.lim_high_crash}
</span>
);
case 5: