Skip to content

Commit

Permalink
Fixes #38042 - Pass LCE ID in Refresh Counts action from WebUI
Browse files Browse the repository at this point in the history
  • Loading branch information
pavanshekar committed Nov 25, 2024
1 parent 3f2a522 commit 0eb58f7
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion webpack/scenes/SmartProxy/ExpandableCvDetails.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,9 @@ const ExpandableCvDetails = ({
const refreshCountAction = cvId => ({
title: __('Refresh counts'),
onClick: () => {
dispatch(updateSmartProxyContentCounts(smartProxyId, { content_view_id: cvId }));
dispatch(updateSmartProxyContentCounts(smartProxyId, {
environment_id: envId, content_view_id: cvId,
}));
},
});

Expand Down

0 comments on commit 0eb58f7

Please sign in to comment.