We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a35f015 commit bd11ad4Copy full SHA for bd11ad4
web/console/src/modules/cluster/actions/resourcePodActions.ts
@@ -224,11 +224,10 @@ const restActions = {
224
});
225
226
if (podFilter.podName) {
227
- // 清除分页信息
+ // 有podname,后台会启用模糊查询,导致只能查到原本当前页的内容
228
dispatch(resourceDetailActions.pod.changePaging({ pageIndex: 1, pageSize: 2048 }));
229
} else {
230
231
- dispatch(resourceDetailActions.pod.resetPaging());
+ dispatch(resourceDetailActions.pod.changePaging({ pageIndex: 1, pageSize: 20 }));
232
}
233
234
// 根据筛选项,进行pod列表的查询,namespace、metadata.name等过滤条件
0 commit comments