mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
76cc634a46
* feat: link option in remirror * fix: removed link import from remirror toolbar * refactor: constants folder * refactor: layouts folder structure * fix: issue view context * feat: cycles and modules toggle in settings
9 lines
408 B
TypeScript
9 lines
408 B
TypeScript
export const MODULE_STATUS = [
|
|
{ label: "Backlog", value: "backlog", color: "#5e6ad2" },
|
|
{ label: "Planned", value: "planned", color: "#26b5ce" },
|
|
{ label: "In Progress", value: "in-progress", color: "#f2c94c" },
|
|
{ label: "Paused", value: "paused", color: "#ff6900" },
|
|
{ label: "Completed", value: "completed", color: "#4cb782" },
|
|
{ label: "Cancelled", value: "cancelled", color: "#cc1d10" },
|
|
];
|