Skip to content
This repository was archived by the owner on May 30, 2024. It is now read-only.

Fix the size of detail of changes #129

Merged
merged 1 commit into from
Sep 30, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ui/src/components/DeployConfirm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ function CommitChange(props: CommitChangeProps): JSX.Element {
{/* Display the description of the commit. */}
{(!hide) ?
<Paragraph style={{margin: 0}}>
<pre style={{marginBottom: 0}}>
<pre style={{marginBottom: 0, fontSize: 12}}>
{description.split(/(\r\n)/g).map((line, idx) => {
return (line !== "\r\n")? <Text key={idx}>{line}</Text> : <br/>
})}
Expand Down