Skip to content

Commit

Permalink
fix(antd/next): fix the feedbackLayout type definition error of the f…
Browse files Browse the repository at this point in the history
…orm-layout (#1372)
  • Loading branch information
liuweiGL authored May 9, 2021
1 parent adae3da commit 3c5f6f7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/antd/src/form-layout/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export interface IFormLayoutProps {
direction?: 'rtl' | 'ltr'
inset?: boolean
shallow?: boolean
feedbackLayout?: 'loose' | 'terse' | 'popover'
feedbackLayout?: 'loose' | 'terse' | 'popover' | 'none'
bordered?: boolean
}

Expand Down
2 changes: 1 addition & 1 deletion packages/next/src/form-layout/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export interface IFormLayoutProps {
direction?: 'rtl' | 'ltr'
inset?: boolean
shallow?: boolean
feedbackLayout?: 'loose' | 'terse' | 'popover'
feedbackLayout?: 'loose' | 'terse' | 'popover' | 'none'
bordered?: boolean
}

Expand Down

0 comments on commit 3c5f6f7

Please sign in to comment.