diff --git a/packages/core/client/src/schema-component/antd/variable/Input.tsx b/packages/core/client/src/schema-component/antd/variable/Input.tsx
index c19f9465e1..a769f5269d 100644
--- a/packages/core/client/src/schema-component/antd/variable/Input.tsx
+++ b/packages/core/client/src/schema-component/antd/variable/Input.tsx
@@ -19,9 +19,9 @@ import dayjs from 'dayjs';
import React, { useCallback, useEffect, useMemo } from 'react';
import { useTranslation } from 'react-i18next';
import { useCompile } from '../../hooks';
+import { Json } from '../input';
import { XButton } from './XButton';
import { useStyles } from './style';
-import { Json } from '../input';
const JT_VALUE_RE = /^\s*{{\s*([^{}]+)\s*}}\s*$/;
@@ -204,6 +204,7 @@ export function Input(props: VariableInputProps) {
parseOptions,
hideVariableButton,
constantAbel = true,
+ ...otherProps
} = props;
const scope = typeof props.scope === 'function' ? props.scope() : props.scope;
const { wrapSSR, hashId, componentCls, rootPrefixCls } = useStyles({ hideVariableButton });
@@ -501,7 +502,7 @@ export function Input(props: VariableInputProps) {
)}
{/* 确保所有ant input样式都已加载, 放到Compact中会导致Compact中的Input样式不对 */}
-
+
>,
);
}