mirror of
https://gitee.com/nocobase/nocobase.git
synced 2025-05-09 23:49:27 +08:00
Merge branch 'next' into develop
This commit is contained in:
commit
3a461fb77a
@ -131,7 +131,7 @@ export const FormFieldLinkageRuleAction = observer(
|
||||
/>
|
||||
)}
|
||||
{!props.disabled && (
|
||||
<a role="button" aria-label="icon-close">
|
||||
<a role="button" aria-label="icon-close" style={{ verticalAlign: 'text-top' }}>
|
||||
<CloseCircleOutlined onClick={() => remove()} style={{ color: '#bfbfbf' }} />
|
||||
</a>
|
||||
)}
|
||||
|
@ -79,7 +79,7 @@ export const ValueDynamicComponent = (props: ValueDynamicComponentProps) => {
|
||||
[collectionName, mode, setValue],
|
||||
);
|
||||
const textAreaStyle = useMemo(() => {
|
||||
return { minWidth: 460, borderRadius: 0 };
|
||||
return { minWidth: 390, borderRadius: 0 };
|
||||
}, []);
|
||||
const compatScope = useMemo(() => {
|
||||
return compatOldVariables(scope, {
|
||||
@ -120,7 +120,16 @@ export const ValueDynamicComponent = (props: ValueDynamicComponentProps) => {
|
||||
|
||||
// 表达式
|
||||
express: (
|
||||
<div role="button" aria-label="dynamic-component-linkage-rules" style={expressStyle}>
|
||||
<div
|
||||
role="button"
|
||||
aria-label="dynamic-component-linkage-rules"
|
||||
style={expressStyle}
|
||||
className={css`
|
||||
.x-button {
|
||||
height: auto !important;
|
||||
}
|
||||
`}
|
||||
>
|
||||
<Variable.TextArea
|
||||
value={fieldValue?.value}
|
||||
onChange={handleChangeOfExpress}
|
||||
|
Loading…
x
Reference in New Issue
Block a user