Browse Source

add if judge (#14290)

3.2.1-prepare
jackfanwan 1 year ago committed by GitHub
parent
commit
6b1a952c6b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 25
      dolphinscheduler-ui/src/views/projects/workflow/definition/components/timing-modal.tsx

25
dolphinscheduler-ui/src/views/projects/workflow/definition/components/timing-modal.tsx

@ -298,18 +298,19 @@ export default defineComponent({
</NFormItem>
<NFormItem label=' ' showFeedback={false}>
<NList>
<NListItem>
<NThing
description={t('project.workflow.next_five_execution_times')}
>
{this.schedulePreviewList.map((item: string) => (
<NSpace>
{item}
<br />
</NSpace>
))}
</NThing>
</NListItem>
{this.schedulePreviewList.length > 0 ?
<NListItem>
<NThing
description={t('project.workflow.next_five_execution_times')}
>
{this.schedulePreviewList.map((item: string) => (
<NSpace>
{item}
<br/>
</NSpace>
))}
</NThing>
</NListItem> : null}
</NList>
</NFormItem>
<NFormItem

Loading…
Cancel
Save