diff --git a/src/Runner.Server/Controllers/TimelineController.cs b/src/Runner.Server/Controllers/TimelineController.cs index 3bf84b2960f..9640c0ec719 100644 --- a/src/Runner.Server/Controllers/TimelineController.cs +++ b/src/Runner.Server/Controllers/TimelineController.cs @@ -196,6 +196,10 @@ internal async Task UpdateTimeLine(Guid timelineId, VssJsonCollec })); records = MergeTimelineRecords(records); foreach(var r in records) { + // Bug Detail TimeLine Updates not supported + if(r.Details != null) { + r.Details = null; + } var stored = (from va in _context.TimelineVariables where va.Record == r select va).ToDictionary(kv => kv.Name, kv => kv, StringComparer.OrdinalIgnoreCase); foreach(var item in r.Variables) {