-
Notifications
You must be signed in to change notification settings - Fork 25
EVG-19254: Show details.description regardless of task status #2070
Conversation
Passing run #13004 ↗︎
Details:
Review all test suite changes for PR #2070 ↗︎ |
src/pages/task/metadata/index.tsx
Outdated
details.description, | ||
isContainerTask | ||
)}` | ||
: `Command: ${details.description}`} |
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.
The character limit is 500 according to the docs. I think the text needs to render outside of the metadata panel after a certain character count.
src/pages/task/metadata/index.tsx
Outdated
details.description, | ||
isContainerTask | ||
)}` | ||
: `Command: ${details.description}`} |
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.
A possible label is "Status description". It could be good since those words are similar to the docs and API.
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.
thanks for the suggestion — but I think I might like Command
slightly more. 😅
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.
No problem Command is good too 😎
EVG-19254
Description
Users can set the value of
description
even if the task has succeeded (docs), but we only show it if the task has failed. We should show the description if it exists.I wasn't sure what verbiage to use since
description
can be set to anything of the user's choice (or it will default to the last run command), so if you have another suggestion feel free to let me know.Testing