-
Notifications
You must be signed in to change notification settings - Fork 5
Description
Hi,
When inserting long status strings that include '-' the formatting eventually breaks:
So instead of the expected

The reason was a line down further, where we had:
ccu2-4 [VFAS-xxxxx-HW-revB-EMT-Port-Failure-Debugging]
But if I instead put
ccu2-4 status 012345678901234567890123456789012345678901234567890123456789012345678901234567890
then the status gets truncated and Slack shows
ccu2-4 [01234567890123456789012345678901234567890]
So it truncates to 41 characters.
However, if I submit the status as
status ccu2-4 0123456789-0123456789-0123456789-0123456789
instead I see the same issue again as the string does not get truncated, the full string including the hyphens is displayed:
ccu2-4 [0123456789-0123456789-0123456789-0123456789]
