diff --git a/web/app/[workspaceSlug]/(projects)/notifications/page.tsx b/web/app/[workspaceSlug]/(projects)/notifications/page.tsx index 47a2858ef7..2e8efd107f 100644 --- a/web/app/[workspaceSlug]/(projects)/notifications/page.tsx +++ b/web/app/[workspaceSlug]/(projects)/notifications/page.tsx @@ -33,7 +33,7 @@ const WorkspaceDashboardPage = observer(() => { } = useUser(); const { setPeekIssue } = useIssueDetail(); // derived values - const pageTitle = currentWorkspace?.name ? `${currentWorkspace?.name} - Notifications` : undefined; + const pageTitle = currentWorkspace?.name ? `${currentWorkspace?.name} - Inbox` : undefined; const { workspace_slug, project_id, issue_id, is_inbox_issue } = notificationLiteByNotificationId(currentSelectedNotificationId); diff --git a/web/app/[workspaceSlug]/(projects)/profile/[userId]/header.tsx b/web/app/[workspaceSlug]/(projects)/profile/[userId]/header.tsx index 743108dd49..845ddf312e 100644 --- a/web/app/[workspaceSlug]/(projects)/profile/[userId]/header.tsx +++ b/web/app/[workspaceSlug]/(projects)/profile/[userId]/header.tsx @@ -7,7 +7,7 @@ import Link from "next/link"; import { useParams } from "next/navigation"; import { ChevronDown, PanelRight } from "lucide-react"; import { IUserProfileProjectSegregation } from "@plane/types"; -import { Breadcrumbs, CustomMenu } from "@plane/ui"; +import { Breadcrumbs, CustomMenu, UserActivityIcon } from "@plane/ui"; import { BreadcrumbLink } from "@/components/common"; // components import { ProfileIssuesFilter } from "@/components/profile"; @@ -43,14 +43,23 @@ export const UserProfileHeader: FC = observer((props) => { const isCurrentUser = currentUser?.id === userId; - const breadcrumbLabel = `${isCurrentUser ? "Your" : userName} Activity`; + const breadcrumbLabel = `${isCurrentUser ? "Your" : userName} Work`; return (
- } /> + } + /> + } + />
{showProfileIssuesFilter && }
diff --git a/web/app/[workspaceSlug]/(projects)/profile/[userId]/page.tsx b/web/app/[workspaceSlug]/(projects)/profile/[userId]/page.tsx index 7d99317d72..b6c93ec8fa 100644 --- a/web/app/[workspaceSlug]/(projects)/profile/[userId]/page.tsx +++ b/web/app/[workspaceSlug]/(projects)/profile/[userId]/page.tsx @@ -39,7 +39,7 @@ export default function ProfileOverviewPage() { return ( <> - +
diff --git a/web/app/[workspaceSlug]/(projects)/projects/(detail)/[projectId]/inbox/page.tsx b/web/app/[workspaceSlug]/(projects)/projects/(detail)/[projectId]/inbox/page.tsx index 0a2ecd17d4..36aa37e302 100644 --- a/web/app/[workspaceSlug]/(projects)/projects/(detail)/[projectId]/inbox/page.tsx +++ b/web/app/[workspaceSlug]/(projects)/projects/(detail)/[projectId]/inbox/page.tsx @@ -36,7 +36,7 @@ const ProjectInboxPage = observer(() => { ); // derived values - const pageTitle = currentProjectDetails?.name ? `${currentProjectDetails?.name} - Inbox` : "Plane - Inbox"; + const pageTitle = currentProjectDetails?.name ? `${currentProjectDetails?.name} - Intake` : "Plane - Intake"; const currentNavigationTab = navigationTab ? navigationTab === "open" diff --git a/web/app/[workspaceSlug]/(projects)/workspace-views/[globalViewId]/page.tsx b/web/app/[workspaceSlug]/(projects)/workspace-views/[globalViewId]/page.tsx index 95fb113cdd..3eec4b0276 100644 --- a/web/app/[workspaceSlug]/(projects)/workspace-views/[globalViewId]/page.tsx +++ b/web/app/[workspaceSlug]/(projects)/workspace-views/[globalViewId]/page.tsx @@ -9,23 +9,17 @@ import { GlobalViewsHeader } from "@/components/workspace"; // constants import { DEFAULT_GLOBAL_VIEWS_LIST } from "@/constants/workspace"; // hooks -import { useGlobalView, useWorkspace } from "@/hooks/store"; +import { useWorkspace } from "@/hooks/store"; const GlobalViewIssuesPage = observer(() => { // router const { globalViewId } = useParams(); // store hooks const { currentWorkspace } = useWorkspace(); - const { getViewDetailsById } = useGlobalView(); + // derived values - const globalViewDetails = globalViewId ? getViewDetailsById(globalViewId.toString()) : undefined; const defaultView = DEFAULT_GLOBAL_VIEWS_LIST.find((view) => view.key === globalViewId); - const pageTitle = - currentWorkspace?.name && defaultView?.label - ? `${currentWorkspace?.name} - ${defaultView?.label}` - : currentWorkspace?.name && globalViewDetails?.name - ? `${currentWorkspace?.name} - ${globalViewDetails?.name}` - : undefined; + const pageTitle = currentWorkspace?.name ? `${currentWorkspace?.name} - All Views` : undefined; return ( <> diff --git a/web/app/[workspaceSlug]/(projects)/workspace-views/header.tsx b/web/app/[workspaceSlug]/(projects)/workspace-views/header.tsx index 72e9ed43e9..cccb9ded8e 100644 --- a/web/app/[workspaceSlug]/(projects)/workspace-views/header.tsx +++ b/web/app/[workspaceSlug]/(projects)/workspace-views/header.tsx @@ -4,9 +4,10 @@ import { useCallback, useState } from "react"; import { observer } from "mobx-react"; import { useParams } from "next/navigation"; // types +import { Layers } from "lucide-react"; import { IIssueDisplayFilterOptions, IIssueDisplayProperties, IIssueFilterOptions } from "@plane/types"; // ui -import { Breadcrumbs, Button, LayersIcon } from "@plane/ui"; +import { Breadcrumbs, Button } from "@plane/ui"; // components import { BreadcrumbLink } from "@/components/common"; import { DisplayFiltersSelection, FiltersDropdown, FilterSelection } from "@/components/issues"; @@ -108,9 +109,7 @@ export const GlobalIssuesHeader = observer(() => { } /> - } + link={} />} />