Skip to content

Commit

Permalink
Prevent broker client limits being shown in wrong TeamType
Browse files Browse the repository at this point in the history
Spotted while enabling on production
  • Loading branch information
hardillb committed Oct 24, 2024
1 parent bea512f commit c7128dd
Showing 1 changed file with 1 addition and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -194,13 +194,9 @@ export default {
if (this.input.properties.trial.active && !this.input.properties.trial.instanceType) {
this.input.properties.trial.instanceType = '_'
}
this.input.properties.teamBroker = teamType.properties?.teamBroker || { clients: {} }
this.input.order = '' + (teamType.order || 0)
if (this.input.properties.teamBroker?.clients === undefined) {
this.input.properties.teamBroker = {
clients: {}
}
}
// Apply default feature values if undefined
if (this.input.properties.features['shared-library'] === undefined) {
Expand Down

0 comments on commit c7128dd

Please sign in to comment.