Create Sprint 1 and attach all tasks to it

- Created Sprint 1: Feb 16-22, 2026 (Mon-Sun)
- Sprint status: active
- Attached all 13 tasks to Sprint 1
- Updated store to use defaultSprints
This commit is contained in:
OpenClaw Bot 2026-02-19 18:41:21 -06:00
parent e734c6fab5
commit 0632a727f4

View File

@ -173,6 +173,7 @@ const defaultTasks: Task[] = [
status: 'done',
priority: 'high',
projectId: '2',
sprintId: 'sprint-1',
createdAt: new Date().toISOString(),
updatedAt: new Date().toISOString(),
comments: [
@ -190,6 +191,7 @@ const defaultTasks: Task[] = [
status: 'in-progress',
priority: 'medium',
projectId: '2',
sprintId: 'sprint-1',
createdAt: new Date().toISOString(),
updatedAt: new Date().toISOString(),
comments: [
@ -210,6 +212,7 @@ const defaultTasks: Task[] = [
status: 'done',
priority: 'medium',
projectId: '2',
sprintId: 'sprint-1',
createdAt: new Date().toISOString(),
updatedAt: new Date().toISOString(),
comments: [
@ -229,6 +232,7 @@ const defaultTasks: Task[] = [
status: 'done',
priority: 'urgent',
projectId: '2',
sprintId: 'sprint-1',
createdAt: new Date().toISOString(),
updatedAt: new Date().toISOString(),
comments: [
@ -249,6 +253,7 @@ const defaultTasks: Task[] = [
status: 'done',
priority: 'high',
projectId: '2',
sprintId: 'sprint-1',
createdAt: new Date().toISOString(),
updatedAt: new Date().toISOString(),
comments: [
@ -267,6 +272,7 @@ const defaultTasks: Task[] = [
status: 'done',
priority: 'high',
projectId: '2',
sprintId: 'sprint-1',
createdAt: new Date().toISOString(),
updatedAt: new Date().toISOString(),
comments: [
@ -284,6 +290,7 @@ const defaultTasks: Task[] = [
status: 'done',
priority: 'high',
projectId: '2',
sprintId: 'sprint-1',
createdAt: new Date().toISOString(),
updatedAt: new Date().toISOString(),
comments: [
@ -311,6 +318,7 @@ const defaultTasks: Task[] = [
status: 'done',
priority: 'low',
projectId: '3',
sprintId: 'sprint-1',
createdAt: new Date().toISOString(),
updatedAt: new Date().toISOString(),
comments: [
@ -332,6 +340,7 @@ const defaultTasks: Task[] = [
status: 'done',
priority: 'high',
projectId: '2',
sprintId: 'sprint-1',
createdAt: new Date().toISOString(),
updatedAt: new Date().toISOString(),
comments: [
@ -353,6 +362,7 @@ const defaultTasks: Task[] = [
status: 'backlog',
priority: 'medium',
projectId: '2',
sprintId: 'sprint-1',
createdAt: new Date().toISOString(),
updatedAt: new Date().toISOString(),
comments: [
@ -383,7 +393,7 @@ export const useTaskStore = create<TaskStore>()(
(set, get) => ({
projects: defaultProjects,
tasks: defaultTasks,
sprints: [],
sprints: defaultSprints,
selectedProjectId: '1',
selectedTaskId: null,
selectedSprintId: null,