mirror of https://github.com/harness/drone.git
Fix long log line does not wrap properly (#587)
parent
a81237099e
commit
d26c54052e
|
@ -249,7 +249,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.stepLogContainer {
|
.stepLogContainer {
|
||||||
padding: 15px 36px;
|
padding: 15px 10px 15px 36px;
|
||||||
flex-shrink: 0;
|
flex-shrink: 0;
|
||||||
|
|
||||||
.consoleLine {
|
.consoleLine {
|
||||||
|
|
|
@ -52,7 +52,7 @@ export const Checks: React.FC<ChecksProps> = ({ repoMetadata, pullRequestMetadat
|
||||||
<Container className={css.main}>
|
<Container className={css.main}>
|
||||||
<Match expr={prChecksDecisionResult?.overallStatus}>
|
<Match expr={prChecksDecisionResult?.overallStatus}>
|
||||||
<Truthy>
|
<Truthy>
|
||||||
<Split split="vertical" size={400} minSize={300} maxSize={600} primary="first">
|
<Split split="vertical" size={'calc(100% - 400px)'} minSize={600} maxSize={1200} primary="second">
|
||||||
<ChecksMenu
|
<ChecksMenu
|
||||||
repoMetadata={repoMetadata}
|
repoMetadata={repoMetadata}
|
||||||
pullRequestMetadata={pullRequestMetadata}
|
pullRequestMetadata={pullRequestMetadata}
|
||||||
|
|
|
@ -167,7 +167,7 @@ export function FolderContent({ repoMetadata, resourceContent, gitRef }: FolderC
|
||||||
setPathsChunks(pathsChunks.map(_chunk => (pathsChunk === _chunk ? pathsChunk : _chunk)))
|
setPathsChunks(pathsChunks.map(_chunk => (pathsChunk === _chunk ? pathsChunk : _chunk)))
|
||||||
}
|
}
|
||||||
|
|
||||||
console.log('Failed to fetch path commit details', error) // eslint-disable-line no-console
|
console.error('Failed to fetch path commit details', error) // eslint-disable-line no-console
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
break
|
break
|
||||||
|
|
Loading…
Reference in New Issue