This commit is contained in:
Taric Xin
2022-04-01 11:04:35 +08:00
parent a3293f7a54
commit 846d321151

View File

@ -252,7 +252,7 @@ export class PartnerListComponent {
onSearch: (q: any) => {
let str = q.replace(/^\s+|\s+$/g, '');
if (str) {
return this.service.getChannel({ enterpriseName: str }).toPromise();
return this.service.getChannel({ name: str }).toPromise();
} else {
return of([]);
}