Refactor layout and styling: update HTML structure and apply Bootstrap for improved responsiveness

This commit is contained in:
Cédric OLIVIER
2026-05-22 19:06:46 +02:00
parent 8bd2b4853f
commit f6203d41b8
17 changed files with 203 additions and 984 deletions
-19
View File
@@ -88,25 +88,6 @@ export class IssuesStore {
return ids.length > 0 ? Math.max(...ids) + 1 : 1;
}
createDraftIssue(): IssueEntity {
const draftIssue: IssueEntity = this.normalizeIssue({
id: this.getNextId(),
type: 'Story',
assignee: '',
epic: '',
name: '',
dueDate: '',
description: '',
estimatedTime: null,
dependsOnIds: [],
priority: 'Moyenne',
status: 'draft',
progress: 0,
});
this.upsert(draftIssue);
return draftIssue;
}
upsert(issue: IssueEntity): void {
const normalizedIssue = this.normalizeIssue(issue);