From 666f1bd52a94fb1d6cdac9683af4f95f4ab63471 Mon Sep 17 00:00:00 2001 From: shuki Date: Fri, 6 Mar 2026 21:51:10 +0200 Subject: [PATCH] Fix View Log job lookup: extract RowKey.value Co-Authored-By: Claude Opus 4.6 --- tui/screens/running_tasks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tui/screens/running_tasks.py b/tui/screens/running_tasks.py index 07bf705..fff41c3 100644 --- a/tui/screens/running_tasks.py +++ b/tui/screens/running_tasks.py @@ -86,7 +86,7 @@ class RunningTasksScreen(Screen): self.notify("No jobs to view", severity="warning") return row_key, _ = table.coordinate_to_cell_key(table.cursor_coordinate) - job_id = str(row_key) + job_id = str(row_key.value if hasattr(row_key, 'value') else row_key) job = job_manager.get_job(job_id) if not job: self.notify("Job not found", severity="warning")