Skip to content

Commit

Permalink
Merge pull request #1883 from Cuiyansong/hotfix-1862
Browse files Browse the repository at this point in the history
fix: add missing redux dispatch function back, close #1862
  • Loading branch information
SoarBlueSky authored Aug 15, 2022
2 parents 5bbfa02 + c83ea00 commit e19fffb
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion frontend/src/app/pages/DashBoardPage/actions/widgetAction.ts
Original file line number Diff line number Diff line change
Expand Up @@ -449,7 +449,9 @@ export const widgetChartClickAction =
const { boardId, editing, renderMode, widget, params, history } = obj;
//is tableChart
tablePagingAndSortEventListener(params, p => {
tableChartClickAction(boardId, editing, renderMode, widget, params);
dispatch(
tableChartClickAction(boardId, editing, renderMode, widget, params),
);
});
// jump
const jumpConfig = widget.config?.jumpConfig;
Expand Down

0 comments on commit e19fffb

Please sign in to comment.