mirror of
https://github.com/umami-software/umami.git
synced 2026-02-19 03:55:37 +01:00
Added retention screen.
This commit is contained in:
parent
d0d11225f4
commit
bce6737f29
12 changed files with 164 additions and 45 deletions
|
|
@ -6,16 +6,18 @@ import { FilterBar } from '@/components/input/FilterBar';
|
|||
export function WebsiteControls({
|
||||
websiteId,
|
||||
showFilter = true,
|
||||
showCompare,
|
||||
}: {
|
||||
websiteId: string;
|
||||
showFilter?: boolean;
|
||||
showCompare?: boolean;
|
||||
}) {
|
||||
return (
|
||||
<Column gap>
|
||||
<Row alignItems="center" justifyContent="space-between" gap="3">
|
||||
{showFilter && <WebsiteFilterButton websiteId={websiteId} />}
|
||||
<Row alignItems="center" gap="3">
|
||||
<WebsiteDateFilter websiteId={websiteId} />
|
||||
<WebsiteDateFilter websiteId={websiteId} showCompare={showCompare} />
|
||||
</Row>
|
||||
</Row>
|
||||
<FilterBar />
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue