mirror of
https://github.com/umami-software/umami.git
synced 2026-02-12 16:45:35 +01:00
show actions in users websites
This commit is contained in:
parent
2c04115d20
commit
f01abe23c6
1 changed files with 3 additions and 1 deletions
|
|
@ -16,7 +16,9 @@ export function UserWebsites({ userId }) {
|
||||||
<Page isLoading={queryResult.query.isLoading} error={queryResult.query.error}>
|
<Page isLoading={queryResult.query.isLoading} error={queryResult.query.error}>
|
||||||
{hasData && (
|
{hasData && (
|
||||||
<DataTable queryResult={queryResult}>
|
<DataTable queryResult={queryResult}>
|
||||||
{({ data }) => <WebsitesTable data={data} />}
|
{({ data }) => (
|
||||||
|
<WebsitesTable data={data} showActions={true} allowEdit={true} allowView={true} />
|
||||||
|
)}
|
||||||
</DataTable>
|
</DataTable>
|
||||||
)}
|
)}
|
||||||
</Page>
|
</Page>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue