Long names of parallel blocks make actions in console view unusable

This issue is archived. You can view it, but you can't modify it. Learn more

XMLWordPrintable

    • Type: Bug
    • Resolution: Unresolved
    • Priority: Minor
    • Component/s: core, pipeline
    • Environment:

      Hi,

      I saw that on our Jenkins instance there are jobs with really long parallel stages names.

      When we open Console view all actions are hidden behind parallel stages names.
      In such scenario both actions and parallel stages names are not usable.

      This issue generally happens even for shorter names, as seen in the attachment. For longer ones it get's more annoying as text on the buttons is completely hidden.

      Here is pipeline to reproduce :

      pipeline {
          agent none    stages {
              stage('Hello') {
                  steps {
                      script {
                          def parallelSteps = [
                              "run echo hello world from step 1": {echo "world"},
                              "run echo hello world from step 2": {echo "world"},
                              "run echo hello world from step 3": {echo "world"},
                              "run echo hello world from step 4": {echo "world"},
                              "run echo hello world from step 5": {echo "world"},
                              "run echo hello world from step 6": {echo "world"},
                              "run echo hello world from step 7": {echo "world"},
                              "run echo hello world from step 8": {echo "world"},
                              "run echo hello world from step 9": {echo "world"},
                              "run echo hello world from step 10": {echo "world"},
                              "run echo hello world from step 11": {echo "world"},
                              "run echo hello world from step 12": {echo "world"},
                              "run echo hello world from step 13": {echo "world"},
                              "run echo hello world from step 14": {echo "world"},
                              "run echo hello world from step 15": {echo "world"},
                              "run echo hello world from step 16": {echo "world"},
                              "run echo hello world from step 17": {echo "world"},
                              "run echo hello world from step 18": {echo "world"},
                              "run echo hello world from step 19": {echo "world"},
                              "run echo hello world from step 20": {echo "world"},
                          ]
                          
                          parallel parallelSteps
                      }
                  }
              }
          }
      }
       

            Assignee:
            Unassigned
            Reporter:
            Grzegorz
            Archiver:
            Jenkins Service Account

              Created:
              Updated:
              Archived: