Updated "UP" status to include UP_WITH_INCREASED_SAMPLING_METROLOGY

This commit is contained in:
Daniel Wathen
2023-05-25 09:00:23 -07:00
parent 3a2e68043c
commit e4624749ae
5 changed files with 6 additions and 7 deletions

View File

@ -162,7 +162,7 @@ public class ToolEventView
if (evnt.ToUpper() == "UP")
return true;
if (evnt.ToUpper() == "UP_WITH_INCREASED_SAMPLING")
if (evnt.ToUpper().Contains("UP_WITH_INCREASED_SAMPLING"))
return true;
if (evnt.ToUpper() == "IDLE")
@ -174,9 +174,6 @@ public class ToolEventView
if (evnt.ToUpper() == "WAITING_FOR_ENGINEER_SCHEDULED")
return true;
if (evnt.ToUpper() == "UP_WITH_INCREASED_SAMPLING_SURFACE")
return true;
return false;
}