debugger: Fix debug scenario picker showing history in reverse order (#38452)

Closes #37859

Release Notes:

- debugger: Fix sort order of pasted launched debug sessions in debugger
launch modal
This commit is contained in:
Anthony Eid
2025-09-18 20:15:25 +00:00
committed by GitHub
parent fc0eb882f7
commit e3e0522e32
+1 -1
View File
@@ -258,7 +258,7 @@ impl Inventory {
) {
self.last_scheduled_scenarios
.retain(|(s, _)| s.label != scenario.label);
self.last_scheduled_scenarios.push_back((
self.last_scheduled_scenarios.push_front((
scenario,
DebugScenarioContext {
task_context,