Add Task issue type and update menu title to Bonsai
This commit is contained in:
@@ -31,6 +31,7 @@ export class IssueDetail {
|
|||||||
'Bug',
|
'Bug',
|
||||||
'Study',
|
'Study',
|
||||||
'Story',
|
'Story',
|
||||||
|
'Task',
|
||||||
'Technical Story',
|
'Technical Story',
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|||||||
@@ -4,7 +4,7 @@ const ISSUES_STORAGE_KEY = 'bonsai.issues';
|
|||||||
|
|
||||||
export type IssueStatus = 'draft' | 'todo' | 'done' | 'in-progress';
|
export type IssueStatus = 'draft' | 'todo' | 'done' | 'in-progress';
|
||||||
export type IssuePriority = 'Basse' | 'Moyenne' | 'Haute';
|
export type IssuePriority = 'Basse' | 'Moyenne' | 'Haute';
|
||||||
export type IssueType = 'Epic' | 'Bug' | 'Study' | 'Story' | 'Technical Story';
|
export type IssueType = 'Epic' | 'Bug' | 'Study' | 'Story' | 'Task' | 'Technical Story';
|
||||||
|
|
||||||
export type IssueEntity = {
|
export type IssueEntity = {
|
||||||
id: number;
|
id: number;
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
<aside class="bg-dark text-white min-vh-100 p-3" aria-label="Menu principal">
|
<aside class="bg-dark text-white min-vh-100 p-3" aria-label="Menu principal">
|
||||||
<div class="d-flex flex-column gap-3">
|
<div class="d-flex flex-column gap-3">
|
||||||
<div>
|
<div>
|
||||||
<h2 class="h5 mb-0">Menu</h2>
|
<h2 class="h5 mb-0">Bonsai</h2>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<nav>
|
<nav>
|
||||||
|
|||||||
Reference in New Issue
Block a user