You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<Propertykey="retry"name="Retry"description="Define the retry condition for the task execution."value={!!task.retry}onChange={value=>this.handleTaskProperty('retry',value ? {when: '<% failed() %>'} : false)}>
109
+
<Propertykey="with"name="With Items"description="Run an action or workflow associated with a task multiple times."value={!!task.with}onChange={value=>this.handleTaskProperty('with',value ? {items: 'x in <% ctx(y) %>'} : false)}>
<StringFieldname="count"value={task.retry.count}className="count-title"onChange={value=>this.handleTaskProperty(['retry','count'],this.getValue(value))}spec={{'default':'enter expression or integer'}}/>
114
-
<StringFieldname="delay (seconds)"value={task.retry.delay}className="delay-title"onChange={value=>this.handleTaskProperty(['retry','delay'],this.getValue(value))}spec={{'default':'enter expression or integer'}}/>
<Propertykey="with"name="With Items"description="Run an action or workflow associated with a task multiple times."value={!!task.with}onChange={value=>this.handleTaskProperty('with',value ? {items: 'x in <% ctx(y) %>'} : false)}>
119
+
<Propertykey="delay"name="Delay"description="Add delay before task execution"value={task.delay!=null}onChange={value=>this.handleTaskProperty('delay',value ? '10' : false)}>
<Propertykey="retry"name="Retry"description="Define the retry condition for the task execution."value={!!task.retry}onChange={value=>this.handleTaskProperty('retry',value ? {when: '<% failed() %>'} : false)}>
<StringFieldname="count"value={task.retry.count}className="count-title"onChange={value=>this.handleTaskProperty(['retry','count'],this.getValue(value))}spec={{'default':'enter expression or integer'}}/>
146
+
<StringFieldname="delay (seconds)"value={task.retry.delay}className="delay-title"onChange={value=>this.handleTaskProperty(['retry','delay'],this.getValue(value))}spec={{'default':'enter expression or integer'}}/>
0 commit comments