Skip to content

Commit

Permalink
GUI Launch form: pipeline version selection & continue run improvemen…
Browse files Browse the repository at this point in the history
…ts (do not display configurations selector if there is only 1 configuration)
  • Loading branch information
rodichenko committed Dec 19, 2024
1 parent 2a10905 commit 5ada355
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -5951,7 +5951,7 @@ class LaunchPipelineForm extends localization.LocalizedReactComponent {
return null;
}
let configuration;
if (this.props.configurations.length > 0 && this.props.currentConfigurationName) {
if (this.props.configurations.length > 1 && this.props.currentConfigurationName) {
const configurationChange = (configurationName) => {
if (this.props.onConfigurationChanged) {
this.props.onConfigurationChanged(configurationName);
Expand Down

0 comments on commit 5ada355

Please sign in to comment.