-
Type:
Bug
-
Resolution: Fixed
-
Priority:
Major
-
Component/s: blueocean-plugin
-
Environment:Operating System: Windows 7 Pro 32 bit
JRE/JDK: Oracle JDK 1.8.0_144
Jenkins: ver. 2.73.2 (running directly)
Plugin: Blue Ocean Plugin 1.3.1
Whether Jenkins is accessed through a reverse proxy: No
How you installed Jenkins: Generic Java package (.war)
Web Browser: Google Chrome 61.0.3163.100 (Official Build / 32 bit)Operating System: Windows 7 Pro 32 bit JRE/JDK: Oracle JDK 1.8.0_144 Jenkins: ver. 2.73.2 (running directly) Plugin: Blue Ocean Plugin 1.3.1 Whether Jenkins is accessed through a reverse proxy: No How you installed Jenkins: Generic Java package (.war) Web Browser: Google Chrome 61.0.3163.100 (Official Build / 32 bit)
-
Blue Ocean 1.4 - beta 3
When I ran the following Jenkinsfile, the pull down of the choice input protruded from the screen, so I encountered a problem in which the item at the bottom could not be selected.
pipeline {
agent any
stages {
stage("Select") {
steps {
script {
def choices = ["1", "2", "3", "4", "5", "6", "7", "8", "9", "10"].join("\n")
def selected = input(
id: "select",
message: "Please select",
parameters: [choice(name: "refspec", choices: choices)])
}
}
}
}
}