mirror of
https://github.com/umami-software/umami.git
synced 2026-02-04 20:57:17 +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}>
|
||||
{hasData && (
|
||||
<DataTable queryResult={queryResult}>
|
||||
{({ data }) => <WebsitesTable data={data} />}
|
||||
{({ data }) => (
|
||||
<WebsitesTable data={data} showActions={true} allowEdit={true} allowView={true} />
|
||||
)}
|
||||
</DataTable>
|
||||
)}
|
||||
</Page>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue