feat(ST-dgognlsz): SoloTaskCard 4-regels layout met Tooltips

4-regels layout: taaknaam+task_code badge (tooltip: naam+beschrijving),
beschrijving+pbi_code badge (tooltip: pbi_title+pbi_description), story+job-badge.
SoloTaskCardOverlay identieke 4-regels structuur zonder tooltips.
PBI-velden toegevoegd aan SoloTask-interface + Prisma-queries + test-fixtures.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Scrum4Me Agent 2026-05-06 03:32:39 +02:00
parent d819d29b04
commit 04fa9bf4a9
7 changed files with 88 additions and 6 deletions

View file

@ -94,6 +94,9 @@ const TODO_TASK = {
story_code: 'ST-1',
story_title: 'Story 1',
task_code: 'ST-1.1',
pbi_code: null,
pbi_title: null,
pbi_description: null,
}
const DEFAULT_PROPS = {

View file

@ -65,6 +65,9 @@ const baseTask: SoloTask = {
story_code: 'ST-100',
story_title: 'Test Story',
task_code: 'ST-100.1',
pbi_code: null,
pbi_title: null,
pbi_description: null,
}
const DEFAULT_PROPS = {

View file

@ -17,6 +17,9 @@ const baseTask = (id: string, overrides: Partial<SoloTask> = {}): SoloTask => ({
story_code: 'ST-100',
story_title: 'Original Story',
task_code: 'ST-100.1',
pbi_code: null,
pbi_title: null,
pbi_description: null,
...overrides,
})