diff --git a/client/src/app/deploy/sections/automatic/automatic.component.ts b/client/src/app/deploy/sections/automatic/automatic.component.ts index bf867fc..c520d17 100644 --- a/client/src/app/deploy/sections/automatic/automatic.component.ts +++ b/client/src/app/deploy/sections/automatic/automatic.component.ts @@ -95,9 +95,11 @@ export class AutomaticComponent implements OnInit { getCurrentUser, getComputeContexts ]).then(() => { - if (this.selectedComputeContext) { - this.onComputeContextChange(this.selectedComputeContext) - } + setTimeout(() => { + if (this.selectedComputeContext) { + this.onComputeContextChange(this.selectedComputeContext) + } + }, 500) }) }