Browse Source

[Fix-8623][UI-Next][V1.0.0-Alpha] Rectify the issue to prompt the correct message for the process definition state. (#8695)

3.0.0/version-upgrade
calvin 3 years ago committed by GitHub
parent
commit
e1862a81ba
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      dolphinscheduler-ui-next/src/views/projects/workflow/definition/components/table-action.tsx

2
dolphinscheduler-ui-next/src/views/projects/workflow/definition/components/table-action.tsx

@ -170,7 +170,7 @@ export default defineComponent({
</NTooltip>
<NTooltip trigger={'hover'}>
{{
default: () => t('project.workflow.up_line'),
default: () => releaseState === 'ONLINE'? t('project.workflow.down_line'):t('project.workflow.up_line'),
trigger: () => (
<NButton
size='tiny'

Loading…
Cancel
Save