Skip to content

Commit

Permalink
Merge pull request #1468 from gonzalo-bulnes/add-task-id-to-expanded-…
Browse files Browse the repository at this point in the history
…list-item

Add task ID to expanded list item
  • Loading branch information
pierotofy authored Feb 13, 2024
2 parents 206edf1 + 02b4061 commit 8150b82
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions app/static/app/js/components/TaskListItem.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -578,6 +578,10 @@ class TaskListItem extends React.Component {
<td><strong>{_("Disk Usage:")}</strong></td>
<td>{Utils.bytesToSize(task.size * 1024 * 1024)}</td>
</tr>}
<tr>
<td><strong>{_("Task ID:")}</strong></td>
<td>{task.id}</td>
</tr>
<tr>
<td><strong>{_("Task Output:")}</strong></td>
<td><div className="btn-group btn-toggle">
Expand Down

0 comments on commit 8150b82

Please sign in to comment.