This is an automated email from the ASF dual-hosted git repository. kerwin pushed a commit to branch 3.1.5-prepare in repository https://gitbox.apache.org/repos/asf/dolphinscheduler.git
commit 6898c149a85794c1cb002f0969d9b6b90a6b7b0b Author: Aaron Wang <[email protected]> AuthorDate: Thu Mar 2 19:42:16 2023 +0800 [BUG][UI] Flink task display right version and deploy mode (#13628) --- .../src/views/projects/task/components/node/fields/use-flink.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dolphinscheduler-ui/src/views/projects/task/components/node/fields/use-flink.ts b/dolphinscheduler-ui/src/views/projects/task/components/node/fields/use-flink.ts index d987d5ff56..844d3ad8bd 100644 --- a/dolphinscheduler-ui/src/views/projects/task/components/node/fields/use-flink.ts +++ b/dolphinscheduler-ui/src/views/projects/task/components/node/fields/use-flink.ts @@ -98,7 +98,7 @@ export function useFlink(model: { [field: string]: any }): IJsonItem[] { ) watchEffect(() => { - model.flinkVersion = model.programType === 'SQL' ? '>=1.13' : '<1.10' + model.flinkVersion = model.programType === 'SQL' ? '>=1.13' : model.flinkVersion }) return [
