Merge branch 'fix/table-nav' into 'release'

Table refresh on page change.

See merge request theappsmith/internal-tools-client!405
This commit is contained in:
Satbir Singh 2020-03-19 07:38:34 +00:00
commit 0d5e551830

View File

@ -591,8 +591,7 @@ function* executePageLoadActionsSaga(action: ReduxAction<PageAction[][]>) {
const pageActions = action.payload;
for (const actionSet of pageActions) {
const apiResponses = yield select(getActionResponses);
const filteredSet = actionSet.filter(action => !apiResponses[action.id]);
yield* yield all(filteredSet.map(a => call(executePageLoadAction, a)));
yield* yield all(actionSet.map(a => call(executePageLoadAction, a)));
}
}