1
0
Fork 0
mirror of https://github.com/seanmorley15/AdventureLog.git synced 2025-07-25 15:59:38 +02:00

Enhance unlinked state logic for checklists and notes; update button layout in modals

This commit is contained in:
Sean Morley 2024-12-26 22:09:17 -05:00
parent df2ce01910
commit 8f7551f4be
6 changed files with 7 additions and 9 deletions

View file

@ -30,7 +30,7 @@
collection.start_date > checklist.date &&
collection.end_date > checklist.date;
unlinked = !!(startOutsideRange || endOutsideRange);
unlinked = !!(startOutsideRange || endOutsideRange || !checklist.date);
}
}