Skip to content

Commit b77fff5

Browse files
lsongsusexingzhang-suse
authored andcommitted
NVSHAS-9991 The group nv.gatekeeper-controller-manager.openshift-azure-guardrails is missing from UI
1 parent fe5957a commit b77fff5

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

admin/webapp/websrc/app/common/utils/app.utils.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -325,7 +325,7 @@ export class UtilsService {
325325
cb(data, options);
326326
if (length === params.limit) {
327327
params.start += params.limit;
328-
this.loadPagedData(url, params, arrayName, cb, options);
328+
this.loadPagedData(url, params, arrayName, cb, handleError, options);
329329
}
330330
},
331331
e => {
@@ -350,7 +350,7 @@ export class UtilsService {
350350
cb(data, options);
351351
if (length === params.limit) {
352352
params.start += params.limit;
353-
this.loadPagedData(url, params, arrayName, cb, options);
353+
this.loadPagedData(url, params, arrayName, cb, handleError, options);
354354
} else {
355355
finalize_cb();
356356
}

admin/webapp/websrc/app/routes/components/groups/groups.component.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -305,7 +305,8 @@ export class GroupsComponent implements OnInit, OnDestroy {
305305
this.handleError,
306306
() => {
307307
this.refreshing.emit(false);
308-
}
308+
},
309+
{ isHardReloaded: true }
309310
);
310311
};
311312

0 commit comments

Comments
 (0)