4runr-os 2.10.58 → 2.10.59
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -388,10 +388,10 @@ impl RunManagerState {
|
|
|
388
388
|
|
|
389
389
|
/// Open full-screen detail for the currently selected run.
|
|
390
390
|
pub fn open_detail_view(&mut self) -> Option<String> {
|
|
391
|
-
let
|
|
392
|
-
self.detail_run_id = Some(
|
|
391
|
+
let run_id = self.selected_run()?.id.clone();
|
|
392
|
+
self.detail_run_id = Some(run_id.clone());
|
|
393
393
|
self.detail_log_scroll = 0;
|
|
394
|
-
Some(
|
|
394
|
+
Some(run_id)
|
|
395
395
|
}
|
|
396
396
|
|
|
397
397
|
/// Close detail view and return to list (selection unchanged).
|
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "4runr-os",
|
|
3
|
-
"version": "2.10.
|
|
3
|
+
"version": "2.10.59",
|
|
4
4
|
"type": "module",
|
|
5
|
-
"description": "4Runr AI Agent OS - Secure terminal interface for AI agents. v2.10.
|
|
5
|
+
"description": "4Runr AI Agent OS - Secure terminal interface for AI agents. v2.10.59: Fix Run Manager detail view compile (borrow in open_detail_view); detail locks to run until ESC.",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
7
|
"bin": {
|
|
8
8
|
"4runr": "dist/index.js",
|