From 02b40613797d5d8672756aea2f88a9817667b303 Mon Sep 17 00:00:00 2001 From: Gonzalo Bulnes Guilpain Date: Tue, 13 Feb 2024 12:41:10 +0000 Subject: [PATCH] Add task ID to expanded list item This ID is useful to locate the task directory for inspection. Because it is fairly long, it seemed better to keep it relatively low in the list of properties to avoid making the essential information more difficult to read or skim through. Yet placing it above the task output minimizes movement when the console is toggled open. See https://community.opendronemap.org/t/19285 --- app/static/app/js/components/TaskListItem.jsx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/app/static/app/js/components/TaskListItem.jsx b/app/static/app/js/components/TaskListItem.jsx index 3b9bae5d..2ea14f77 100644 --- a/app/static/app/js/components/TaskListItem.jsx +++ b/app/static/app/js/components/TaskListItem.jsx @@ -578,6 +578,10 @@ class TaskListItem extends React.Component { {_("Disk Usage:")} {Utils.bytesToSize(task.size * 1024 * 1024)} } + + {_("Task ID:")} + {task.id} + {_("Task Output:")}