Skip to content

Commit 4228bfb

Browse files
authored
fix: small ui issues in queues and tracing tabs (#1006)
1 parent 06e7567 commit 4228bfb

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

plugins/plugin-bullmq/src/components/jobs-table.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ const JobRow = memo<JobRowProps>(({ job, queueName, onSelect, isSelected }) => {
9191
<MoreVertical className="h-4 w-4" />
9292
</Button>
9393
</DropdownMenuTrigger>
94-
<DropdownMenuContent align="end">
94+
<DropdownMenuContent align="end" className="bg-background text-foreground">
9595
{job.failedReason && (
9696
<DropdownMenuItem onClick={handleRetry}>
9797
<RefreshCw className="mr-2 h-4 w-4" />

plugins/plugin-bullmq/src/components/queue-detail.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ export const QueueDetail = memo(() => {
129129
<MoreVertical className="h-4 w-4" />
130130
</Button>
131131
</DropdownMenuTrigger>
132-
<DropdownMenuContent align="end">
132+
<DropdownMenuContent align="end" className="bg-background text-foreground">
133133
<DropdownMenuItem onClick={handleCleanCompleted}>
134134
<Trash className="mr-2 h-4 w-4" />
135135
Clean Completed

plugins/plugin-observability/src/components/trace-item/trace-item.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,8 @@ export const TraceItem: React.FC<Props> = memo(
4646
onClick={handleClick}
4747
data-testid="trace-timeline-item"
4848
>
49-
<div className="flex items-center min-w-[200px] max-w-[200px] h-[32px] max-h-[32px] py-4 px-2 text-sm font-semibold text-foreground truncate sticky left-0 bg-card z-9">
50-
{traceName}
49+
<div className="flex items-center min-w-[200px] max-w-[200px] h-[32px] max-h-[32px] py-4 px-2 text-sm font-semibold text-foreground sticky left-0 bg-card z-9">
50+
<span className="truncate min-w-0">{traceName}</span>
5151
</div>
5252
<div className="flex w-full flex-row items-center hover:bg-muted/50 rounded-md">
5353
<div className="relative w-full h-[32px] flex items-center">

0 commit comments

Comments
 (0)