mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
e585255c4c
* fix: initial issue creation issue in the list layout * fix kanban drag n drop and updating properties * reduce z index of spreadsheet bottom row to not overlap with other elements * fix state update by using state id instead of state detail's id * fix add default use state for description * add create issue button for project views to be at par with production * save draft issues from modal * chore: added save view button in all layouts applied filters * use useEffect instead of swr for fetching issue details for peek overview * fix: resolved kanban dnd --------- Co-authored-by: rahulramesha <rahulramesham@gmail.com>
21 lines
388 B
TypeScript
21 lines
388 B
TypeScript
// filters
|
|
export * from "./filters";
|
|
export * from "./empty-states";
|
|
export * from "./quick-action-dropdowns";
|
|
|
|
// roots
|
|
export * from "./roots";
|
|
|
|
// layouts
|
|
export * from "./list";
|
|
export * from "./calendar";
|
|
export * from "./gantt";
|
|
export * from "./kanban";
|
|
export * from "./spreadsheet";
|
|
|
|
// properties
|
|
export * from "./properties";
|
|
|
|
// save view
|
|
export * from "./save-filter-view";
|