Replace Job Step retry placeholders with values (#20376) (#20388)

This commit is contained in:
Karl Burtram
2022-08-17 13:21:40 -07:00
committed by GitHub
parent 4fd2d9e76b
commit 1bcbb93301

View File

@@ -403,7 +403,7 @@ export class JobStepDialog extends AgentDialog<JobStepData> {
.withProps({
inputType: 'number',
width: '100%',
placeHolder: '0'
value: '0'
})
.component();
this.retryIntervalBox = view.modelBuilder.inputBox()
@@ -411,7 +411,7 @@ export class JobStepDialog extends AgentDialog<JobStepData> {
.withProps({
inputType: 'number',
width: '100%',
placeHolder: '0'
value: '0'
}).component();
let retryAttemptsContainer = view.modelBuilder.formContainer()