[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)

subscribe-dev-mailing-list
Amy0104 2022-03-23 22:07:34 +08:00 committed by GitHub
parent d3cbb011c6
commit 9c33c3e692
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 3 deletions

View File

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