Uploaded image for project: 'Jenkins'
  1. Jenkins
  2. JENKINS-43316

When developer selects text it should pause karaoke

XMLWordPrintable

    • Blue Ocean 1.1, Blue Ocean 1.1, Blue Ocean 1.2-beta1, Blue Ocean 1.4 - beta 3, Blue Ocean 1.4 - beta 2, Blue Ocean 1.6 - beta 2, Blue Ocean - 1.6 - beta 4

      Steps to reproduce

      1. I am viewing the running Pipeline defined in the example below
      2. Step 1 of stage 1 is executing. I select its text with my mouse to copy and paste or interact with the log in some way (selecting, clicking, etc - I am focused on this log as its streaming)
      3. Step 1 of stage 1 finishes and Step 1 of Stage 2 starts executing
      4. My focus is ripped away from Step 1 of Stage 1 to Step 1 of Stage 2.

      What should happen
      When I open step 1 of stage 1, karaoke should not move my focus to Step 1 of Stage 2.

      Example

      pipeline {
          agent any
          stages {
              stage('1') {
                  steps {
                      sh 'ping -c 10 localhost'
                  }
              }
              stage('2') {
                  steps {
                      sh 'ping -c 50 localhost'
                  }
              }
          }
      }
      

            sophistifunk Josh McDonald
            jamesdumay James Dumay
            Votes:
            2 Vote for this issue
            Watchers:
            7 Start watching this issue

              Created:
              Updated: