diff --git a/src/pages/network/containers/LoadBalancers/LoadBalancerInstance/index.jsx b/src/pages/network/containers/LoadBalancers/LoadBalancerInstance/index.jsx index 3e386d5d..5b29b64a 100644 --- a/src/pages/network/containers/LoadBalancers/LoadBalancerInstance/index.jsx +++ b/src/pages/network/containers/LoadBalancers/LoadBalancerInstance/index.jsx @@ -34,6 +34,20 @@ export default class LoadBalancerInstance extends Base { this.list.silent = false; }; + fetchDownloadData = async (params) => { + let result = []; + if (this.isFilterByBackend) { + result = await this.downloadStore.fetchListByPageWithFip( + this.updateFetchParamsByPage(params) + ); + } else { + result = await this.downloadStore.fetchList( + this.updateFetchParams(params) + ); + } + return result; + }; + get fetchDataByCurrentProject() { // add project_id to fetch data; return true;