feat: prevent list dropdown from closing after selection

This commit is contained in:
Henry
2025-02-01 22:06:59 +00:00
parent ee45d692c2
commit 14b4d73fb6
4 changed files with 35 additions and 113 deletions

View File

@@ -68,7 +68,8 @@ export default function CardPage() {
const formattedLists =
board?.lists.map((list) => ({
...list,
key: list.publicId,
value: list.name,
selected: list.publicId === data?.list?.publicId,
})) ?? [];