Skip to content

Commit 50a70a9

Browse files
committed
Restore page description
1 parent 64787f2 commit 50a70a9

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

src/main/frontend/pipeline-console-view/pipeline-console/main/ConsoleLine.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ export const ConsoleLine = (props: ConsoleLineProps) => {
4949
className="console-line-number"
5050
href={`?start-byte=${props.startByte}&selected-node=${props.stepId}#log-${props.lineNumber}`}
5151
style={{
52-
width: Math.max(9 * String(props.lineNumber).length, 28) + "px",
52+
width: Math.max(9 * String(props.lineNumber).length, 30) + "px",
5353
}}
5454
>
5555
{props.lineNumber}

src/main/frontend/pipeline-console-view/pipeline-console/main/console-log-card.scss

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,6 @@ pre.console-output-line {
113113

114114
a.console-line-number {
115115
text-align: right;
116-
width: 28px;
117116
margin-right: 14px;
118117
color: var(--text-color-secondary);
119118
white-space: nowrap;

src/main/resources/io/jenkins/plugins/pipelinegraphview/consoleview/PipelineConsoleViewAction/index.jelly

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,8 @@
5353
</j:if>
5454
</t:buildCaption>
5555

56+
<p class="jenkins-page-description">${it.iconColor.description} ${it.startTimeString} ago in ${it.durationString}</p>
57+
5658
<div id="root" data-current-run-path="${rootURL + '/' + it.buildUrl}"
5759
data-previous-run-path="${it.previousBuildUrl != null ? rootURL + '/' + it.previousBuildUrl : null}" />
5860
<script src="${rootURL}/plugin/pipeline-graph-view/js/build.js"/>

0 commit comments

Comments
 (0)