Skip to content

Commit

Permalink
fix(Drawer): change disablePortal default value (#274)
Browse files Browse the repository at this point in the history
  • Loading branch information
Lunory authored Jul 22, 2024
1 parent 35f10bb commit 31cd649
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/Drawer/Drawer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ export const Drawer: React.FC<DrawerProps> = ({
onEscape,
preventScrollBody = true,
hideVeil,
disablePortal,
disablePortal = true,
}) => {
let someItemVisible = false;
React.Children.forEach(children, (child) => {
Expand Down
2 changes: 1 addition & 1 deletion src/components/Drawer/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ The Drawer module consists of two primary components: `Drawer` and `DrawerItem`.
| onVeilClick | Optional callback function that is called when the veil (overlay) is clicked. | `(event: React.MouseEvent) => void` | |
| onEscape | Optional callback function that is called when the escape key is pressed, if the drawer is open. | `() => void` | |
| hideVeil | Optional flag to hide the background darkening | `boolean` | |
| disablePortal | Optional flag to not render drawer inside `Portal` | `boolean` | |
| disablePortal | Optional flag to not render drawer inside `Portal` | `boolean` | `true` |

## CSS API

Expand Down

0 comments on commit 31cd649

Please sign in to comment.