Replace Job Step retry placeholders with values (#20376)

This commit is contained in:
Karl Burtram
2022-08-17 10:59:27 -07:00
committed by GitHub
parent 4a2c6e9fb4
commit 8b54494d64

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()