This is an automated email from the ASF dual-hosted git repository. zhongjiajie pushed a commit to branch 3.2.0-release in repository https://gitbox.apache.org/repos/asf/dolphinscheduler.git
commit 333866489a29c7acfd531e7a49abc1c75a6e5094 Author: Eric Gao <[email protected]> AuthorDate: Wed Sep 27 18:58:55 2023 +0800 Fix typo (#14973) (cherry picked from commit 1e2fddf958def49016aaaac70b16705c9eacc848) --- dolphinscheduler-ui/src/views/datasource/list/detail.tsx | 4 ++-- dolphinscheduler-ui/src/views/datasource/list/use-form.ts | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/dolphinscheduler-ui/src/views/datasource/list/detail.tsx b/dolphinscheduler-ui/src/views/datasource/list/detail.tsx index 12d8b646c3..f44ca4704e 100644 --- a/dolphinscheduler-ui/src/views/datasource/list/detail.tsx +++ b/dolphinscheduler-ui/src/views/datasource/list/detail.tsx @@ -163,7 +163,7 @@ const DetailModal = defineComponent({ showJDBCConnectParameters, showPublicKey, modeOptions, - redShitModeOptions, + redShiftModeOptions, loading, saving, testing, @@ -304,7 +304,7 @@ const DetailModal = defineComponent({ v-model={[detailForm.mode, 'value']} options={ detailForm.type === 'REDSHIFT' - ? redShitModeOptions + ? redShiftModeOptions : modeOptions } ></NSelect> diff --git a/dolphinscheduler-ui/src/views/datasource/list/use-form.ts b/dolphinscheduler-ui/src/views/datasource/list/use-form.ts index 3f9229e162..d7d8ccb2b5 100644 --- a/dolphinscheduler-ui/src/views/datasource/list/use-form.ts +++ b/dolphinscheduler-ui/src/views/datasource/list/use-form.ts @@ -218,7 +218,7 @@ export function useForm(id?: number) { value: 'accessToken' } ], - redShitModeOptions: [ + redShiftModeOptions: [ { label: 'password', value: 'password'
