Skip to content

Commit fc4c72d

Browse files
committed
feat: set 'flexWrap: wrap' in console item
1 parent f1a3d36 commit fc4c72d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/ConsoleItem/index.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ export const ConsoleItem = ({ data }: Props) => {
6060
<Col style={{ flexShrink: 0 }}>
6161
<Timestamp time={data.time} />
6262
</Col>
63-
<Col flex={1} style={{ display: 'flex' }}>
63+
<Col flex={1} style={{ display: 'flex', flexWrap: 'wrap' }}>
6464
{content}
6565
</Col>
6666
</Row>

0 commit comments

Comments
 (0)