You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dolphinscheduler.apache.org by wa...@apache.org on 2022/07/22 03:02:32 UTC

[dolphinscheduler] branch dev updated: [Fix][UI] Widen the segment separator input box. (#11096)

This is an automated email from the ASF dual-hosted git repository.

wanggenhua pushed a commit to branch dev
in repository https://gitbox.apache.org/repos/asf/dolphinscheduler.git


The following commit(s) were added to refs/heads/dev by this push:
     new 79cec27423 [Fix][UI] Widen the segment separator input box. (#11096)
79cec27423 is described below

commit 79cec274235a7d9915a87282f37468757a9abaff
Author: Amy0104 <97...@users.noreply.github.com>
AuthorDate: Fri Jul 22 11:02:25 2022 +0800

    [Fix][UI] Widen the segment separator input box. (#11096)
---
 .../src/views/projects/task/components/node/fields/use-sql-type.ts      | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dolphinscheduler-ui/src/views/projects/task/components/node/fields/use-sql-type.ts b/dolphinscheduler-ui/src/views/projects/task/components/node/fields/use-sql-type.ts
index 3ad01cf846..0fcc5a3e62 100644
--- a/dolphinscheduler-ui/src/views/projects/task/components/node/fields/use-sql-type.ts
+++ b/dolphinscheduler-ui/src/views/projects/task/components/node/fields/use-sql-type.ts
@@ -24,7 +24,7 @@ import type { IJsonItem } from '../types'
 export function useSqlType(model: { [field: string]: any }): IJsonItem[] {
   const { t } = useI18n()
   const querySpan = computed(() => (model.sqlType === '0' ? 6 : 0))
-  const nonQuerySpan = computed(() => (model.sqlType === '1' ? 6 : 0))
+  const nonQuerySpan = computed(() => (model.sqlType === '1' ? 18 : 0))
   const emailSpan = computed(() =>
     model.sqlType === '0' && model.sendEmail ? 24 : 0
   )