fix: automatic viya deploy timing issue

This commit is contained in:
Mihajlo Medjedovic
2025-06-04 17:37:44 +02:00
parent a0a529ad38
commit 037a97b6ff

View File

@@ -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)
})
}