mirror of
https://github.com/umami-software/umami.git
synced 2026-02-07 22:27:16 +01:00
Fixed scrolling on expanded view.
This commit is contained in:
parent
4e25c07160
commit
8897c2508d
4 changed files with 30 additions and 27 deletions
|
|
@ -28,7 +28,7 @@ export function LoadingPanel({
|
|||
const empty = isEmpty ?? checkEmpty(data);
|
||||
|
||||
return (
|
||||
<Column position="relative" flexGrow={1} {...props}>
|
||||
<Column position="relative" flexGrow={1} overflow="hidden" {...props}>
|
||||
{/* Show loading spinner only if no data exists */}
|
||||
{(isLoading || isFetching) && !data && <Loading icon={loadingIcon} position="page" />}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue