Fix url overflow in task history (#397)
This commit is contained in:
@@ -84,7 +84,7 @@ function TaskHistory() {
|
||||
return (
|
||||
<TableRow key={task.task_id} className="w-4">
|
||||
<TableCell
|
||||
className="w-1/3 cursor-pointer"
|
||||
className="w-1/3 cursor-pointer max-w-64 overflow-hidden whitespace-nowrap overflow-ellipsis"
|
||||
onClick={() => {
|
||||
navigate(task.task_id);
|
||||
}}
|
||||
|
||||
@@ -57,7 +57,9 @@ function QueuedTasks() {
|
||||
navigate(task.task_id);
|
||||
}}
|
||||
>
|
||||
<TableCell className="w-1/3">{task.request.url}</TableCell>
|
||||
<TableCell className="w-1/3 max-w-64 overflow-hidden whitespace-nowrap overflow-ellipsis">
|
||||
{task.request.url}
|
||||
</TableCell>
|
||||
<TableCell className="w-1/3">
|
||||
<StatusBadge status={task.status} />
|
||||
</TableCell>
|
||||
|
||||
Reference in New Issue
Block a user