mirror of
https://github.com/nocobase/nocobase
synced 2024-11-15 15:26:02 +00:00
fix(plugin-workflow): fix input width in request node config (#1585)
This commit is contained in:
parent
01294d3c83
commit
c3b89c9abf
@ -1,5 +1,5 @@
|
|||||||
import { ArrayItems } from '@formily/antd';
|
import { ArrayItems } from '@formily/antd';
|
||||||
import { css } from '@emotion/css';
|
import { cx, css } from '@emotion/css';
|
||||||
|
|
||||||
import { NAMESPACE } from '../locale';
|
import { NAMESPACE } from '../locale';
|
||||||
import { useWorkflowVariableOptions } from '../variable';
|
import { useWorkflowVariableOptions } from '../variable';
|
||||||
@ -36,18 +36,11 @@ export default {
|
|||||||
title: `{{t("URL", { ns: "${NAMESPACE}" })}}`,
|
title: `{{t("URL", { ns: "${NAMESPACE}" })}}`,
|
||||||
'x-decorator': 'FormItem',
|
'x-decorator': 'FormItem',
|
||||||
'x-decorator-props': {
|
'x-decorator-props': {
|
||||||
className: css`
|
|
||||||
.ant-formily-item-control-content-component{
|
|
||||||
.ant-input-affix-wrapper,
|
|
||||||
.ant-input{
|
|
||||||
width: 100%;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
`
|
|
||||||
},
|
},
|
||||||
'x-component': 'Input',
|
'x-component': 'Input',
|
||||||
'x-component-props': {
|
'x-component-props': {
|
||||||
placeholder: 'https://www.nocobase.com',
|
placeholder: 'https://www.nocobase.com',
|
||||||
|
className: 'full-width'
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
headers: {
|
headers: {
|
||||||
@ -153,10 +146,10 @@ export default {
|
|||||||
minRows: 10,
|
minRows: 10,
|
||||||
},
|
},
|
||||||
placeholder: `{{t("Input request data", { ns: "${NAMESPACE}" })}}`,
|
placeholder: `{{t("Input request data", { ns: "${NAMESPACE}" })}}`,
|
||||||
className: css`
|
className: cx('full-width', css`
|
||||||
font-size: 90%;
|
font-size: 90%;
|
||||||
font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
|
font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
|
||||||
`
|
`)
|
||||||
},
|
},
|
||||||
description: `{{t("Only support standard JSON data", { ns: "${NAMESPACE}" })}}`,
|
description: `{{t("Only support standard JSON data", { ns: "${NAMESPACE}" })}}`,
|
||||||
},
|
},
|
||||||
|
Loading…
Reference in New Issue
Block a user