File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
src/Shared/Components/CICDHistory Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -129,7 +129,8 @@ const WorkerStatus = React.memo(
129
129
{ stage !== 'DEPLOY' && getViewWorker ( ) }
130
130
</ div >
131
131
132
- { message && < ShowMoreText text = { message } /> }
132
+ { /* Need key since using ref inside of this component as useEffect dependency, so there were issues while switching builds */ }
133
+ { message && < ShowMoreText text = { message } key = { message } /> }
133
134
</ div >
134
135
</ div >
135
136
)
@@ -610,7 +611,7 @@ const HistoryLogs: React.FC<HistoryLogsProps> = ({
610
611
downloadArtifactUrl = { CDBuildReportUrl }
611
612
type = { HistoryComponentType . CD }
612
613
renderCIListHeader = { renderCIListHeader }
613
- rootClassName = "p-16"
614
+ rootClassName = "p-16 flex-grow-1 "
614
615
/>
615
616
) }
616
617
</ Route >
You can’t perform that action at this time.
0 commit comments