Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Maximum task title length #32

Open
colmdoyle opened this issue Jun 26, 2021 · 1 comment
Open

Maximum task title length #32

colmdoyle opened this issue Jun 26, 2021 · 1 comment
Labels
enhancement New feature or request

Comments

@colmdoyle
Copy link
Contributor

When we render open tasks, we do so with a checkbox which is a type of option. Per the documentation, an option has a maximum text length of 75 characters, so we need to handle that somehow.

@colmdoyle colmdoyle added the enhancement New feature or request label Jun 26, 2021
@colmdoyle
Copy link
Contributor Author

Up for debate how we do this. Possible options would be

Limit it at creation to 75 characters
This would catch it right at the start, but is very limiting and in various places where we could render it (like Modals/Messages etc), we don't have the 75 character limit

Add an ellipsis (...) for long task titles
Gives us flexibility to render longer where possible, but the task list on App Home is currently the most prominent place we render a task title. Could also truncate strangely.

Add a "read more" button
Same as above, but also add a "read more" button that pushes a Modal with more detail. Might clutter up the UI.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

1 participant