Browse Source

[Fix][UI Next][V1.0.0-Alpha] Fix the two hover prompts appear. (#9333)

* [Fix][UI Next][V1.0.0-Alpha] Fix the two hover prompts appear.

* [Fix][UI Next][V1.0.0-Alpha] Fix the two hover prompts appear.
3.0.0/version-upgrade
songjianet 3 years ago committed by GitHub
parent
commit
d7a4dc1dbc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 12
      dolphinscheduler-ui-next/src/views/projects/workflow/definition/timing/use-table.ts

12
dolphinscheduler-ui-next/src/views/projects/workflow/definition/timing/use-table.ts

@ -18,7 +18,7 @@
import { h, ref, reactive } from 'vue'
import { useI18n } from 'vue-i18n'
import { useRouter } from 'vue-router'
import { NSpace, NTooltip, NButton, NPopconfirm, NEllipsis } from 'naive-ui'
import { NSpace, NTooltip, NButton, NPopconfirm } from 'naive-ui'
import {
deleteScheduleById,
offline,
@ -84,15 +84,7 @@ export function useTable() {
{
title: t('project.workflow.workflow_name'),
key: 'processDefinitionName',
...COLUMN_WIDTH_CONFIG['name'],
render: (row: any) =>
h(
NEllipsis,
{ style: 'max-width: 200px' },
{
default: () => row.processDefinitionName
}
)
...COLUMN_WIDTH_CONFIG['name']
},
{
title: t('project.workflow.start_time'),

Loading…
Cancel
Save