Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit4f8270d

Browse files
authored
fix: Exclude time column when selecting build log (#3673)
Closes#2962.
1 parent1400d7c commit4f8270d

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

‎site/src/components/Logs/Logs.tsx

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ export const Logs: FC<React.PropsWithChildren<LogsProps>> = ({ lines, className
2222
{lines.map((line,idx)=>(
2323
<divclassName={styles.line}key={idx}>
2424
<spanclassName={styles.time}>{dayjs(line.time).format(`HH:mm:ss.SSS`)}</span>
25-
&nbsp;&nbsp;&nbsp;&nbsp;
25+
<spanclassName={styles.space}>&nbsp;&nbsp;&nbsp;&nbsp;</span>
2626
<span>{line.output}</span>
2727
</div>
2828
))}
@@ -45,7 +45,11 @@ const useStyles = makeStyles((theme) => ({
4545
line:{
4646
whiteSpace:"nowrap",
4747
},
48+
space:{
49+
userSelect:"none",
50+
},
4851
time:{
52+
userSelect:"none",
4953
width:theme.spacing(12.5),
5054
display:"inline-block",
5155
},

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp