Skip to content

Commit

Permalink
Merge pull request #642 from Arnei/trim-workflow-description
Browse files Browse the repository at this point in the history
Trim workflow description
  • Loading branch information
ziegenberg authored Jun 5, 2024
2 parents f90662a + b70f89a commit 2e8d2bc
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ const RenderWorkflowConfig = <T extends RequiredFormProps>({
<>
{displayDescription && description.length > 0 && (
<div className="collapsible-box" style={descriptionBoxStyle}>
<div style={descriptionTextStyle}>{description}</div>
<div style={descriptionTextStyle}>{description.trim()}</div>
</div>
)}

Expand Down

0 comments on commit 2e8d2bc

Please sign in to comment.