Skip to content

Commit

Permalink
fix(async-storage): Scrolling on the Y axis (#26)
Browse files Browse the repository at this point in the history
Was playing around with the plugin in one of my projects, noticed that
it was not possible to scroll when the list was long.
  • Loading branch information
marjorg committed Feb 7, 2024
1 parent 10b30ea commit a34bc5e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/async-storage/webui/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { AsyncStorageTable } from './AsyncStorageTable';

export default function Main() {
return (
<App style={{ width: '100%', height: '100%', padding: '0.75em' }}>
<App style={{ width: '100%', height: '100%', padding: '0.75em', overflowY: 'scroll' }}>
<AsyncStorageTable />
<p>
By default, the reload button will not update any fields you have changed. To fully update
Expand Down

0 comments on commit a34bc5e

Please sign in to comment.