Skip to content

Commit e19fffb

Browse files
authored
Merge pull request #1883 from Cuiyansong/hotfix-1862
fix: add missing redux dispatch function back, close #1862
2 parents 5bbfa02 + c83ea00 commit e19fffb

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

frontend/src/app/pages/DashBoardPage/actions/widgetAction.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -449,7 +449,9 @@ export const widgetChartClickAction =
449449
const { boardId, editing, renderMode, widget, params, history } = obj;
450450
//is tableChart
451451
tablePagingAndSortEventListener(params, p => {
452-
tableChartClickAction(boardId, editing, renderMode, widget, params);
452+
dispatch(
453+
tableChartClickAction(boardId, editing, renderMode, widget, params),
454+
);
453455
});
454456
// jump
455457
const jumpConfig = widget.config?.jumpConfig;

0 commit comments

Comments
 (0)