mirror of
https://github.com/makeplane/plane.git
synced 2026-07-13 14:01:45 +02:00
* chore: initial draft * chore: crud operations for project overview * chore: ui changes * chore: integrations * fix: package chnages * fix: added loaders * chore: serializer changes * feat: added navigation * fix: lint error * fix: api calls for comment * fix: removed imgs * fix: feature flagged * fix: removed dupes * chore: project activity endpoint * fix: attachments + project reactions * chore: integrated activity * fix: build * chore: added new keys in project activity --------- Co-authored-by: NarayanBavisetti <narayan3119@gmail.com> Co-authored-by: Bavisetti Narayan <72156168+NarayanBavisetti@users.noreply.github.com>
15 lines
541 B
TypeScript
15 lines
541 B
TypeScript
import { useParams } from "next/navigation";
|
|
import { IssuesHeader as CeIssueHeader } from "@/ce/components/issues";
|
|
import { WithFeatureFlagHOC } from "../feature-flags";
|
|
import { AdvancedIssuesHeader } from "./advanced-header";
|
|
|
|
export const IssuesHeader = () => {
|
|
const { workspaceSlug } = useParams();
|
|
return (
|
|
// Add CE component for fallback
|
|
<WithFeatureFlagHOC workspaceSlug={workspaceSlug?.toString()} flag="PROJECT_OVERVIEW" fallback={<CeIssueHeader />}>
|
|
<AdvancedIssuesHeader />
|
|
</WithFeatureFlagHOC>
|
|
);
|
|
};
|