We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hi,
When inserting long status strings that include '-' the formatting eventually breaks: So instead of the expected
we end up seeing:
The reason was a line down further, where we had: ccu2-4 [VFAS-xxxxx-HW-revB-EMT-Port-Failure-Debugging]
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]
But at the beginning and end I see again.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi,
When inserting long status strings that include '-' the formatting eventually breaks:
So instead of the expected
we end up seeing:
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]
But at the beginning and end I see
again.
The text was updated successfully, but these errors were encountered: