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

Commit c28fbe2

Browse files
author
Noah Hanjun Lee
authored
fix: fix the size of detail of changes (#129)
1 parent 39bb99d commit c28fbe2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ui/src/components/DeployConfirm.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ function CommitChange(props: CommitChangeProps): JSX.Element {
157157
{/* Display the description of the commit. */}
158158
{(!hide) ?
159159
<Paragraph style={{margin: 0}}>
160-
<pre style={{marginBottom: 0}}>
160+
<pre style={{marginBottom: 0, fontSize: 12}}>
161161
{description.split(/(\r\n)/g).map((line, idx) => {
162162
return (line !== "\r\n")? <Text key={idx}>{line}</Text> : <br/>
163163
})}

0 commit comments

Comments
 (0)