feat: tagging members in description (#140)

* feat: tagging members in description

* chore: tiptap mention package

* feat: avatar before names in members dropdown
This commit is contained in:
Ridham Khandar
2025-08-15 00:27:35 +05:30
committed by GitHub
parent 4a67afdd3a
commit 8079345546
6 changed files with 210 additions and 3 deletions

View File

@@ -119,7 +119,11 @@ export function CardModal({
{data?.description && (
<div className="mb-10 flex w-full max-w-2xl justify-between">
<div className="mt-2">
<Editor content={data.description} readOnly />
<Editor
content={data.description}
readOnly
workspaceMembers={data?.list.board.workspace.members ?? []}
/>
</div>
</div>
)}