Skip to content

Commit

Permalink
fix hotkeys dialog having 2 scrollbars
Browse files Browse the repository at this point in the history
  • Loading branch information
Nikita Morozov committed Apr 10, 2024
1 parent 0f8d6d9 commit c2c6487
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/core/src/components/hotkeys/hotkeysDialog2.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ export interface HotkeysDialogProps extends DialogProps {
export const HotkeysDialog2: React.FC<HotkeysDialogProps> = ({ globalGroupName = "Global", hotkeys, ...props }) => {
return (
<Dialog {...props} className={classNames(Classes.HOTKEY_DIALOG, props.className)}>
<DialogBody>
<DialogBody useOverflowScrollContainer={false}>
<Hotkeys>
{hotkeys.map((hotkey, index) => (
<Hotkey
Expand Down

0 comments on commit c2c6487

Please sign in to comment.