mirror of
https://github.com/apache/superset.git
synced 2026-05-09 18:05:52 +00:00
fix(log): Update recent_activity by event name (#32681)
This commit is contained in:
@@ -359,7 +359,14 @@ function ExploreViewContainer(props) {
|
||||
}
|
||||
|
||||
useComponentDidMount(() => {
|
||||
props.actions.logEvent(LOG_ACTIONS_MOUNT_EXPLORER);
|
||||
props.actions.logEvent(
|
||||
LOG_ACTIONS_MOUNT_EXPLORER,
|
||||
props.slice?.slice_id
|
||||
? {
|
||||
slice_id: props.slice.slice_id,
|
||||
}
|
||||
: undefined,
|
||||
);
|
||||
});
|
||||
|
||||
useChangeEffect(tabId, (previous, current) => {
|
||||
|
||||
Reference in New Issue
Block a user