- Notifications
You must be signed in to change notification settings - Fork1k
fix(coderd): truncate task prompt to 160 characters in notifications#20147
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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Uh oh!
There was an error while loading.Please reload this page.
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others.Learn more.
LGTM 👍
Non-blocking nit: since the current truncation may cut a word in half, maybe we could trim to the last space before the 160-char limit and then append "...". That way notifications don’t have half words.
Addressed in018e920 |
ffcb7a1
intomainUh oh!
There was an error while loading.Please reload this page.
Uh oh!
There was an error while loading.Please reload this page.
Truncates the task prompt used in notifications to a maximum of 160 characters. The length of 160 characters was chosen arbitrarily.