Skip to content

Commit

Permalink
fix(form): fix marginBlockEnd no use marginLG error
Browse files Browse the repository at this point in the history
close #7526
  • Loading branch information
chenshuai2144 committed Aug 31, 2023
1 parent 7a2c9e0 commit 6e5f384
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/form/src/components/List/style.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ const genProStyle: GenerateStyle<ProToken> = (token) => {
'&-action': {
display: 'flex',
height: '32px',
marginBlockEnd: '24px',
marginBlockEnd: token.marginLG,
lineHeight: '32px',
},
'&-action-icon': {
Expand Down
2 changes: 1 addition & 1 deletion packages/utils/src/typing.ts
Original file line number Diff line number Diff line change
Expand Up @@ -735,7 +735,7 @@ export type ProSchema<
/** @name 在 table的查询表单 中隐藏 */
hideInSearch?: boolean;
/** 设置到 ProField 上面的 Props,内部属性 */
proFieldProps?: ProFieldProps & any;
proFieldProps?: ProFieldProps & Record<string, any>;
} & ExtraProps &
ValueTypeWithFieldProps<Entity, ComponentsType, ExtraProps, ValueType>;

Expand Down

0 comments on commit 6e5f384

Please sign in to comment.