feat: add properties & activity to event filtering

This commit is contained in:
vicke4 2025-07-01 14:22:10 +05:30
parent 954404f8df
commit 528a8d397c
3 changed files with 11 additions and 5 deletions

View file

@ -42,8 +42,8 @@ export default function EventsPage({ websiteId }) {
<Item key="activity">{formatMessage(labels.activity)}</Item>
<Item key="properties">{formatMessage(labels.properties)}</Item>
</Tabs>
{tab === 'activity' && <EventsDataTable websiteId={websiteId} />}
{tab === 'properties' && <EventProperties websiteId={websiteId} />}
{tab === 'activity' && <EventsDataTable websiteId={websiteId} label={label} />}
{tab === 'properties' && <EventProperties websiteId={websiteId} label={label} />}
</div>
</>
);