You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dolphinscheduler.apache.org by GitBox <gi...@apache.org> on 2022/08/09 05:56:16 UTC

[GitHub] [dolphinscheduler] Amy0104 commented on a diff in pull request #11235: [Feature-9978][UI] add node dependency type feature

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: commits-unsubscribe@dolphinscheduler.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org