mirror of
https://github.com/umami-software/umami.git
synced 2026-02-16 10:35:35 +01:00
Only show hosts in expanded view.
This commit is contained in:
parent
0626a33d75
commit
74a3cb6dac
2 changed files with 6 additions and 8 deletions
|
|
@ -2,7 +2,6 @@ import { useState } from 'react';
|
|||
import { Grid, GridRow } from 'components/layout/Grid';
|
||||
import PagesTable from 'components/metrics/PagesTable';
|
||||
import ReferrersTable from 'components/metrics/ReferrersTable';
|
||||
import HostsTable from 'components/metrics/HostsTable';
|
||||
import BrowsersTable from 'components/metrics/BrowsersTable';
|
||||
import OSTable from 'components/metrics/OSTable';
|
||||
import DevicesTable from 'components/metrics/DevicesTable';
|
||||
|
|
@ -20,10 +19,9 @@ export default function WebsiteTableView({ websiteId }: { websiteId: string }) {
|
|||
|
||||
return (
|
||||
<Grid>
|
||||
<GridRow columns="three">
|
||||
<GridRow columns="two">
|
||||
<PagesTable {...tableProps} />
|
||||
<ReferrersTable {...tableProps} />
|
||||
<HostsTable {...tableProps} />
|
||||
</GridRow>
|
||||
<GridRow columns="three">
|
||||
<BrowsersTable {...tableProps} />
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue