diff --git a/frontend/components/Inbox/InboxItemDetail.tsx b/frontend/components/Inbox/InboxItemDetail.tsx index 40bebc8..45a915f 100644 --- a/frontend/components/Inbox/InboxItemDetail.tsx +++ b/frontend/components/Inbox/InboxItemDetail.tsx @@ -170,7 +170,7 @@ const InboxItemDetail: React.FC = ({ onMouseEnter={() => setIsHovered(true)} onMouseLeave={() => setIsHovered(false)} > -
+

{item.content} diff --git a/frontend/components/Navbar.tsx b/frontend/components/Navbar.tsx index c95530e..22de0a1 100644 --- a/frontend/components/Navbar.tsx +++ b/frontend/components/Navbar.tsx @@ -1,6 +1,6 @@ import React, { useState, useRef, useEffect } from "react"; import { Link, useNavigate } from "react-router-dom"; -import { UserIcon, Bars3Icon, PlusIcon, InboxIcon } from "@heroicons/react/24/solid"; +import { UserIcon, Bars3Icon, BoltIcon, InboxIcon } from "@heroicons/react/24/solid"; import { useTranslation } from "react-i18next"; import PomodoroTimer from "./Shared/PomodoroTimer"; @@ -123,12 +123,12 @@ const Navbar: React.FC = ({

{pomodoroEnabled && } diff --git a/frontend/components/Project/ProjectDetails.tsx b/frontend/components/Project/ProjectDetails.tsx index b06213a..27c0e13 100644 --- a/frontend/components/Project/ProjectDetails.tsx +++ b/frontend/components/Project/ProjectDetails.tsx @@ -8,7 +8,8 @@ import { FolderIcon, Squares2X2Icon, BookOpenIcon, - TagIcon + TagIcon, + ListBulletIcon } from "@heroicons/react/24/outline"; import TaskList from "../Task/TaskList"; import ProjectModal from "../Project/ProjectModal"; @@ -456,7 +457,10 @@ const ProjectDetails: React.FC = () => { {!showAutoSuggestForm && (
-

{t('sidebar.tasks', 'Tasks')}

+
+ +

{t('sidebar.tasks', 'Tasks')}

+
{completedTasks.length > 0 && (