[WEB-1730] chore: project intake (#5140)

* chore: intake icon added

* chore: project inbox updated to intake in app sidebar and feature settings

* chore: intake icon added

* chore: project intake

* chore: project intake empty state asset updated
This commit is contained in:
Anmol Singh Bhatia 2024-07-16 15:21:03 +05:30 committed by GitHub
parent cd85a9fe09
commit e4d6e5e1af
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
31 changed files with 56 additions and 27 deletions

View file

@ -19,10 +19,9 @@ import {
SignalMediumIcon,
MessageSquareIcon,
UsersIcon,
Inbox,
} from "lucide-react";
import { IIssueActivity } from "@plane/types";
import { Tooltip, BlockedIcon, BlockerIcon, RelatedIcon, LayersIcon, DiceIcon } from "@plane/ui";
import { Tooltip, BlockedIcon, BlockerIcon, RelatedIcon, LayersIcon, DiceIcon, Intake } from "@plane/ui";
// helpers
import { renderFormattedDate } from "@/helpers/date-time.helper";
import { capitalizeFirstLetter } from "@/helpers/string.helper";
@ -710,10 +709,10 @@ const activityDetails: {
<IssueLink activity={activity} />
</>
)}
{activity.verb === "2" && ` from inbox by marking a duplicate issue.`}
{activity.verb === "2" && ` from intake by marking a duplicate issue.`}
</>
),
icon: <Inbox size={12} color="#6b7280" aria-hidden="true" />,
icon: <Intake className="size-3" color="#6b7280" aria-hidden="true" />,
},
};