Fix long log line does not wrap properly (#587)

jobatzil/rename
Tan Nhu 2023-09-20 20:04:15 +00:00 committed by Harness
parent a81237099e
commit d26c54052e
3 changed files with 3 additions and 3 deletions

View File

@ -249,7 +249,7 @@
}
.stepLogContainer {
padding: 15px 36px;
padding: 15px 10px 15px 36px;
flex-shrink: 0;
.consoleLine {

View File

@ -52,7 +52,7 @@ export const Checks: React.FC<ChecksProps> = ({ repoMetadata, pullRequestMetadat
<Container className={css.main}>
<Match expr={prChecksDecisionResult?.overallStatus}>
<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
repoMetadata={repoMetadata}
pullRequestMetadata={pullRequestMetadata}

View File

@ -167,7 +167,7 @@ export function FolderContent({ repoMetadata, resourceContent, gitRef }: FolderC
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