forked from github/plane
535731141f
* chore: implemented cycles list filters and ordering * chore: active cycle tab updated * refactor: cycles folder structure * fix: name search inout auto-focus * fix: cycles ordering * refactor: move cycle filters logic to mobx store from local storage * chore: show completed cycles in a disclosure * chore: added completed cycles count * refactor: cycles mapping logic --------- Co-authored-by: sriram veeraghanta <veeraghanta.sriram@gmail.com>
21 lines
460 B
TypeScript
21 lines
460 B
TypeScript
// components
|
|
import { CyclesListItem } from "components/cycles";
|
|
|
|
type Props = {
|
|
cycleIds: string[];
|
|
projectId: string;
|
|
workspaceSlug: string;
|
|
};
|
|
|
|
export const CyclesListMap: React.FC<Props> = (props) => {
|
|
const { cycleIds, projectId, workspaceSlug } = props;
|
|
|
|
return (
|
|
<>
|
|
{cycleIds.map((cycleId) => (
|
|
<CyclesListItem key={cycleId} cycleId={cycleId} workspaceSlug={workspaceSlug} projectId={projectId} />
|
|
))}
|
|
</>
|
|
);
|
|
};
|