fix: remove duplicate task key on cards
All checks were successful
Deploy Web Client / deploy (push) Successful in 35s

This commit is contained in:
Markov 2026-02-15 20:41:25 +01:00
parent 34db34c29c
commit 77d80d7726

View File

@ -135,7 +135,7 @@ export default function KanbanBoard({ projectId }: Props) {
className="w-2 h-2 rounded-full mt-1.5 shrink-0" className="w-2 h-2 rounded-full mt-1.5 shrink-0"
style={{ background: PRIORITY_COLORS[task.priority] || "#737373" }} style={{ background: PRIORITY_COLORS[task.priority] || "#737373" }}
/> />
<div className="flex-1"><span className="text-xs text-[var(--muted)] mr-1">{task.key}</span><div><span className="text-xs text-[var(--muted)] mr-1">{task.key}</span><span className="text-sm">{task.title}</span></div></div> <div className="flex-1"><span className="text-xs text-[var(--muted)] mr-1">{task.key}</span><span className="text-sm">{task.title}</span></div>
</div> </div>
{task.description && ( {task.description && (
<p className="text-xs text-[var(--muted)] mt-1 ml-4">{task.description}</p> <p className="text-xs text-[var(--muted)] mt-1 ml-4">{task.description}</p>