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

This commit is contained in:
Amy0104 2022-07-22 11:02:25 +08:00 committed by caishunfeng
parent dba1d076c1
commit 34d2c513c5
1 changed files with 1 additions and 1 deletions

View File

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