Browse Source

[Fix][UI Next][V1.0.0-Alpha] Fix the Flink Version and App Name not hidden when the deploy mode is local in FLINK. (#9135)

3.0.0/version-upgrade
Amy0104 3 years ago committed by GitHub
parent
commit
9c33c3e692
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 9
      dolphinscheduler-ui-next/src/views/projects/task/components/node/fields/use-flink.ts

9
dolphinscheduler-ui-next/src/views/projects/task/components/node/fields/use-flink.ts

@ -36,6 +36,8 @@ export function useFlink(model: { [field: string]: any }): IJsonItem[] {
model.deployMode === 'cluster' ? 12 : 0 model.deployMode === 'cluster' ? 12 : 0
) )
const appNameSpan = computed(() => (model.deployMode === 'cluster' ? 24 : 0))
const mainJarOptions = ref([]) const mainJarOptions = ref([])
const resources: { [field: string]: any } = {} const resources: { [field: string]: any } = {}
@ -118,10 +120,10 @@ export function useFlink(model: { [field: string]: any }): IJsonItem[] {
{ {
type: 'select', type: 'select',
field: 'flinkVersion', field: 'flinkVersion',
span: 12,
name: t('project.node.flink_version'), name: t('project.node.flink_version'),
options: FLINK_VERSIONS, options: FLINK_VERSIONS,
value: model.flinkVersion value: model.flinkVersion,
span: deployModeSpan
}, },
{ {
type: 'input', type: 'input',
@ -129,7 +131,8 @@ export function useFlink(model: { [field: string]: any }): IJsonItem[] {
name: t('project.node.app_name'), name: t('project.node.app_name'),
props: { props: {
placeholder: t('project.node.app_name_tips') placeholder: t('project.node.app_name_tips')
} },
span: appNameSpan
}, },
{ {
type: 'input', type: 'input',

Loading…
Cancel
Save