Missing Blue Ocean parameters on first build

In a multi-branch environment we don’t get the parameters input for the first build after pushing a new branch. It is working correctly in the default environment, but not in BlueOcean (the build is started immediately without the popup that appears at the second build).

As far as I see this should have been fixed in 2017, so I think we do something wrong. My question is: should it work and what are the things necessary to get it working?

Greetz, Marc

We have Jenkins 2.337 and BlueOcean 1.25.8
Our pipeline looks like this:

pipeline
{
agent any
options
{
timestamps()
disableConcurrentBuilds()
}
parameters
{
booleanParam(name: “Mail_team_members”, defaultValue: true)
}
triggers
{
cron(env.BRANCH_NAME == “develop” ? "00,12 * * * " : “”)
}
stages
{

}
}