Skip to content

Commit

Permalink
fix: scheduled pub scroll list issue (#7658)
Browse files Browse the repository at this point in the history
  • Loading branch information
jordanl17 authored Oct 30, 2024
1 parent 3602d67 commit 4e05b3a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 14 deletions.
2 changes: 1 addition & 1 deletion packages/sanity/src/core/scheduledPublishing/tool/Tool.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ export default function Tool() {
</Box>
)}

<Box flex={1}>
<Box flex={1} overflow="auto">
{isInitialLoading ? (
<Box padding={4}>
<Text muted>Loading...</Text>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,19 +36,7 @@ const VirtualList = () => {
}, [scheduleState, sortBy, containerRef])

return (
<Box
paddingBottom={6}
paddingTop={1}
paddingX={4}
ref={containerRef}
style={{
position: 'relative',
overflowX: 'hidden',
overflowY: 'auto',
height: '100%',
boxSizing: 'border-box',
}}
>
<Box paddingBottom={6} paddingTop={1} paddingX={4} ref={containerRef} overflow="hidden">
<Box
style={{
height: `${totalSize}px`,
Expand Down

0 comments on commit 4e05b3a

Please sign in to comment.