Skip to content

Commit b80a904

Browse files
[WEB-2863] chore: minor improvements and bug fixes (#6222)
* fix: remove deprecated icons from logo picker * improvement: minor empty states updates
1 parent 20260f0 commit b80a904

File tree

6 files changed

+15
-1
lines changed

6 files changed

+15
-1
lines changed
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
export * from "./team-issues";
2+
export * from "./team-view-issues";
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
import { observer } from "mobx-react";
2+
3+
export const TeamEmptyState: React.FC = observer(() => <></>);
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
import { observer } from "mobx-react";
2+
3+
export const TeamViewEmptyState: React.FC = observer(() => <></>);

web/core/components/issues/issue-layouts/empty-states/index.tsx

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
import { EIssuesStoreType } from "@plane/constants";
2+
// plane web components
3+
import { TeamEmptyState, TeamViewEmptyState } from "@/plane-web/components/issues/issue-layouts/empty-states";
24
// components
35
import { ProjectArchivedEmptyState } from "./archived-issues";
46
import { CycleEmptyState } from "./cycle";
@@ -34,6 +36,10 @@ export const IssueLayoutEmptyState = (props: Props) => {
3436
return <ProfileViewEmptyState />;
3537
case EIssuesStoreType.EPIC:
3638
return <ProjectEpicsEmptyState />;
39+
case EIssuesStoreType.TEAM:
40+
return <TeamEmptyState />;
41+
case EIssuesStoreType.TEAM_VIEW:
42+
return <TeamViewEmptyState />;
3743
default:
3844
return null;
3945
}
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export * from "ce/components/issues/issue-layouts/empty-states";

web/helpers/emoji.helper.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ export const getRandomEmoji = () => {
88
"128204",
99
"127773",
1010
"127891",
11-
"127947",
1211
"128076",
1312
"128077",
1413
"128187",

0 commit comments

Comments
 (0)