Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions web/ce/components/issues/issue-layouts/empty-states/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
export * from "./team-issues";
export * from "./team-view-issues";
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
import { observer } from "mobx-react";

export const TeamEmptyState: React.FC = observer(() => <></>);
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
import { observer } from "mobx-react";

export const TeamViewEmptyState: React.FC = observer(() => <></>);
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
import { EIssuesStoreType } from "@plane/constants";
// plane web components
import { TeamEmptyState, TeamViewEmptyState } from "@/plane-web/components/issues/issue-layouts/empty-states";
// components
import { ProjectArchivedEmptyState } from "./archived-issues";
import { CycleEmptyState } from "./cycle";
Expand Down Expand Up @@ -34,6 +36,10 @@ export const IssueLayoutEmptyState = (props: Props) => {
return <ProfileViewEmptyState />;
case EIssuesStoreType.EPIC:
return <ProjectEpicsEmptyState />;
case EIssuesStoreType.TEAM:
return <TeamEmptyState />;
case EIssuesStoreType.TEAM_VIEW:
return <TeamViewEmptyState />;
default:
return null;
}
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export * from "ce/components/issues/issue-layouts/empty-states";
1 change: 0 additions & 1 deletion web/helpers/emoji.helper.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ export const getRandomEmoji = () => {
"128204",
"127773",
"127891",
"127947",
"128076",
"128077",
"128187",
Expand Down
Loading