Tags can be typed infinitely long — add max length
File: client/src/components/Task/TaskModal.jsx
The tags input has no limit. Someone can type
a 500 character tag and it breaks the card UI!
Fix:
Add maxLength={20} on the tags input field
Show each tag max 15 chars then truncate with "..."
tag.length > 15 ? tag.slice(0, 15) + "..." : tag
2 line fix across 2 files!
No backend needed
Tags can be typed infinitely long — add max length
File: client/src/components/Task/TaskModal.jsx
The tags input has no limit. Someone can type
a 500 character tag and it breaks the card UI!
Fix:
Add maxLength={20} on the tags input field
Show each tag max 15 chars then truncate with "..."
tag.length > 15 ? tag.slice(0, 15) + "..." : tag
2 line fix across 2 files!
No backend needed