Fix: Implement comprehensive sort debugging and fixes

This commit is contained in:
gpt-engineer-app[bot]
2025-10-13 01:00:45 +00:00
parent 85bdd8a28a
commit 879b890b64
2 changed files with 35 additions and 7 deletions

View File

@@ -48,6 +48,11 @@ export const QueueSortControls = ({
Sort By
</Label>
)}
<div className="flex items-center gap-2 text-xs text-muted-foreground mb-1">
<span>
Sorting by {getSortFieldLabel(sortConfig.field)} ({sortConfig.direction === 'asc' ? '↑ Ascending' : '↓ Descending'})
</span>
</div>
<div className="flex gap-2">
<Select
value={sortConfig.field}