Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(capture): enables scrolling in Capture page #182

Merged
merged 5 commits into from Oct 30, 2021
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 5 additions & 1 deletion src/views/CapturesView.js
Expand Up @@ -24,7 +24,11 @@ function CapturesView() {
direction="column"
style={{ flexWrap: 'nowrap', height: '100%' }}
>
<Grid item container style={{ height: '100%', overflow: 'hidden' }}>
<Grid
item
container
style={{ height: '100%', overflowX: 'hidden', overflowY: 'scroll' }}
>
<CapturesProvider>
<SpeciesProvider>
<TagsProvider>
Expand Down