Enhance scheduling and trace functionalities: add CollectionId to ScheduleEntry and PlannedItem models, update related query handlers and frontend components to support collection information in entry traces. Improve data handling in scheduling logic and enhance user experience in trace display.
This commit is contained in:
@@ -142,7 +142,8 @@ public sealed class GridScheduleGenerator(
|
||||
item.SlotId,
|
||||
item.Trace is null
|
||||
? null
|
||||
: JsonSerializer.Serialize(item.Trace, TraceJsonOptions)
|
||||
: JsonSerializer.Serialize(item.Trace, TraceJsonOptions),
|
||||
item.CollectionId
|
||||
)
|
||||
);
|
||||
added++;
|
||||
|
||||
Reference in New Issue
Block a user