Skip to content

Commit 1cda148

Browse files
Fixes inability to scroll in the TimePicker component (#1234)
1 parent 35c4222 commit 1cda148

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

.changeset/grumpy-trees-mate.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@hyperdx/app": patch
3+
---
4+
5+
Fixes scrolling in TimePicker

packages/app/src/components/TimePicker/TimePicker.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,7 @@ export const TimePicker = ({
265265
</Group>
266266
<Group gap={1} align="stretch">
267267
<Card w={180} p={0}>
268-
<ScrollArea mah={300} scrollbarSize={5}>
268+
<ScrollArea h={300} scrollbarSize={5}>
269269
<Stack gap={0} p="xs">
270270
{relativeTimeOptions.map((item, index) =>
271271
item === 'divider' ? (

0 commit comments

Comments
 (0)