Amy0104 commented on code in PR #11235:
URL: https://github.com/apache/dolphinscheduler/pull/11235#discussion_r940925590
##########
dolphinscheduler-ui/src/views/projects/workflow/definition/components/start-modal.tsx:
##########
@@ -255,6 +255,18 @@ export default defineComponent({
</NSpace>
</NRadioGroup>
</NFormItem>
+ <NFormItem
+ label={t('project.workflow.node_execution')}
+ path='taskDependType'
+ >
+ <NRadioGroup v-model:value={this.startForm.taskDependType}>
+ <NSpace>
+ <NRadio
value='TASK_POST'>{t('project.workflow.backward_execution')}</NRadio>
+ <NRadio
value='TASK_PRE'>{t('project.workflow.forward_execution')}</NRadio>
+ <NRadio
value='TASK_ONLY'>{t('project.workflow.current_node_execution')}</NRadio>
+ </NSpace>
+ </NRadioGroup>
+ </NFormItem>
Review Comment:
It's should set the default value for the taskDependType in startForm.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]