diff --git a/backend/api/Services/MissionRunService.cs b/backend/api/Services/MissionRunService.cs index 2835016a..3386fad2 100644 --- a/backend/api/Services/MissionRunService.cs +++ b/backend/api/Services/MissionRunService.cs @@ -301,6 +301,8 @@ private IQueryable GetMissionRunsWithSubModels(bool readOnly = true) .Include(missionRun => missionRun.Tasks) .ThenInclude(task => task.Inspections) .ThenInclude(inspections => inspections.InspectionFindings) + .Include(missionRun => missionRun.Robot) + .ThenInclude(robot => robot.CurrentInstallation) .Where((m) => m.Area == null || accessibleInstallationCodes.Result.Contains(m.Area.Installation.InstallationCode.ToUpper())) .Where((m) => m.IsDeprecated == false); return readOnly ? query.AsNoTracking() : query.AsTracking();