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: 1 addition & 1 deletion src/core/components/sidebar/Sidebar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ export function SidebarItem({
/>
)}

{!expanded && (
{!expanded && !tooltipId && (
<div
className={`absolute left-full rounded-md px-2 py-1 ml-6 bg-primary/100 text-primary-800 text-base invisible opacity-20 -translate-x-3 transition-all group-hover:visible group-hover:opacity-100 group-hover:translate-x-0`}
>
Expand Down
2 changes: 2 additions & 0 deletions src/core/components/sidebar/SidebarTooltips.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,8 @@ const SidebarTooltips = () => {
{ id: "help-tooltip", content: "Get help" },
{ id: "project-notification-tooltip", content: "Project notifications" },
{ id: "invite-tooltip", content: "Project invitations" },
{ id: "project-notes-tooltip", content: "View notes" },
{ id: "project-tags-tooltip", content: "View tag dashboard" },
]

return (
Expand Down
4 changes: 2 additions & 2 deletions src/pages/projects/[projectId]/notes/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ const NotesPage = () => {
<h1 className="text-3xl">Notes</h1>
<InformationCircleIcon
className="h-5 w-5 stroke-2 text-info"
data-tooltip-id="project-notes-tooltip"
data-tooltip-id="project-notes-tooltip-main"
/>
<Tooltip
id="project-notes-tooltip"
id="project-notes-tooltip-main"
content="Create and manage your private project notes. Notes are visible only to you unless sharing is enabled later."
className="z-[1099] ourtooltips"
/>
Expand Down