feat(kanban): implement task reordering and improve task movement logic

feat(share): add documentType prop to ShareModal for dynamic URL generation
This commit is contained in:
M1ngdaXie
2026-02-08 16:38:02 -08:00
parent 3179ead0a5
commit f319e8ec75
5 changed files with 87 additions and 27 deletions

View File

@@ -42,7 +42,11 @@ const KanbanPage = () => {
</div>
{showShareModal && (
<ShareModal documentId={id!} onClose={() => setShowShareModal(false)} />
<ShareModal
documentId={id!}
documentType="kanban"
onClose={() => setShowShareModal(false)}
/>
)}
</div>
);