未验证 提交 79cec274 编写于 作者: A Amy0104 提交者: GitHub

[Fix][UI] Widen the segment separator input box. (#11096)

上级 cc088e0f
...@@ -24,7 +24,7 @@ import type { IJsonItem } from '../types' ...@@ -24,7 +24,7 @@ import type { IJsonItem } from '../types'
export function useSqlType(model: { [field: string]: any }): IJsonItem[] { export function useSqlType(model: { [field: string]: any }): IJsonItem[] {
const { t } = useI18n() const { t } = useI18n()
const querySpan = computed(() => (model.sqlType === '0' ? 6 : 0)) 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(() => const emailSpan = computed(() =>
model.sqlType === '0' && model.sendEmail ? 24 : 0 model.sqlType === '0' && model.sendEmail ? 24 : 0
) )
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册