Skip to content

Tags can be typed infinitely long — add max length🎯 #125

Description

@anoopcodehack

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

Metadata

Metadata

Assignees

Labels

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions