mirror of
https://github.com/umami-software/umami.git
synced 2026-02-24 06:25:43 +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
|
|
@ -34,7 +34,7 @@ export function WebsiteDetailsPage({ websiteId }: { websiteId: string }) {
|
|||
</Panel>
|
||||
<WebsiteTableView websiteId={websiteId} />
|
||||
<Modal isOpen={!!view} onOpenChange={handleOpenChange} isDismissable>
|
||||
<Dialog style={{ width: '90vw', height: '90vh' }}>
|
||||
<Dialog style={{ maxWidth: 1320, width: '100vw', height: 'calc(100vh - 40px)' }}>
|
||||
{({ close }) => {
|
||||
return <WebsiteExpandedView websiteId={websiteId} onClose={() => handleClose(close)} />;
|
||||
}}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue