-
Type:
Bug
-
Resolution: Cannot Reproduce
-
Priority:
Major
-
Component/s: active-choices-plugin
-
Environment:Jenkins Version 2.492.2
Active Choices Plug-in Version 2.8.6
I am using Pipeline script from SCM and define everything within including Parameters:
properties([
 parameters([
...,
  [
   $class: 'DynamicReferenceParameter',
   choiceType: 'ET_FORMATTED_HIDDEN_HTML',
   name: 'Test',
   omitValueField: true,
   script: [
     $class: 'GroovyScript',
     script: [
       classpath: [],
       sandbox: true,
       script: """
         return '''whatever
         '''
       """
     ]
   ]
  ]
 ])
])
pipeline {
...
}
If I run the pipeline the parameter is shown but then I save it in the config page it no longer shows up. I tried to look at config.xml in the jobs folder to see any difference but nothing.