mirror of
https://github.com/umami-software/umami.git
synced 2026-02-14 17:45:38 +01:00
New admin section.
This commit is contained in:
parent
b78ff3b477
commit
ce1f6c3618
44 changed files with 515 additions and 157 deletions
|
|
@ -37,7 +37,7 @@ export function EventsDataTable({
|
|||
|
||||
return (
|
||||
<DataGrid
|
||||
queryResult={queryResult}
|
||||
query={queryResult}
|
||||
allowSearch={true}
|
||||
autoFocus={false}
|
||||
allowPaging={true}
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@ export function SessionsDataTable({ websiteId }: { websiteId?: string; teamId?:
|
|||
const queryResult = useWebsiteSessionsQuery(websiteId);
|
||||
|
||||
return (
|
||||
<DataGrid queryResult={queryResult} allowPaging allowSearch>
|
||||
<DataGrid query={queryResult} allowPaging allowSearch>
|
||||
{({ data }) => {
|
||||
return <SessionsTable data={data} showDomain={!websiteId} />;
|
||||
}}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue