You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// 2023-01-27 - Removed the use of IndexOf until such time as *DTO object support IEquivalnt // var unitKey = incident.UnitsAssigned.IndexOf(assignedUnit); var unitKey = incident.UnitsAssigned.findIndex(u => u.RadioName == assignedUnit.RadioName);
After implementation of #timbellomo/Dashboard.Models/issues/6 replaced FindIndex with IndexOf
var unitKey = incident.UnitsAssigned.IndexOf(unit);
The text was updated successfully, but these errors were encountered: