feat: Phase 0 data model - add Comment, Priority, collapsed, wipLimit fields
This commit is contained in:
@@ -132,6 +132,8 @@ export const useBoardStore = create<BoardState & BoardActions>()(
|
||||
cardIds: [],
|
||||
width: "standard" as ColumnWidth,
|
||||
color: null,
|
||||
collapsed: false,
|
||||
wipLimit: null,
|
||||
},
|
||||
],
|
||||
}));
|
||||
@@ -204,6 +206,8 @@ export const useBoardStore = create<BoardState & BoardActions>()(
|
||||
dueDate: null,
|
||||
attachments: [],
|
||||
coverColor: null,
|
||||
priority: "none",
|
||||
comments: [],
|
||||
createdAt: now(),
|
||||
updatedAt: now(),
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user