We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 147e736 commit 799963fCopy full SHA for 799963f
src/main/java/io/jenkins/plugins/pipelinegraphview/utils/PipelineStage.java
@@ -1,5 +1,7 @@
1
package io.jenkins.plugins.pipelinegraphview.utils;
2
3
+import static io.jenkins.plugins.pipelinegraphview.consoleview.PipelineConsoleViewAction.URL_NAME;
4
+
5
import java.util.List;
6
import org.jenkinsci.plugins.workflow.pipelinegraphanalysis.TimingInfo;
7
@@ -34,7 +36,7 @@ public PipelineStage(
34
36
this.sequential = sequential;
35
37
this.synthetic = synthetic;
38
this.agent = agent;
- this.url = "/" + runUrl + "pipeline-console?selected-node=" + id;
39
+ this.url = "/" + runUrl + URL_NAME + "?selected-node=" + id;
40
}
41
42
public PipelineStage getNextSibling() {
0 commit comments