diff --git a/src/app/routes/partner/partner-list/components/partner-audit-modal/partner-audit-modal.component.ts b/src/app/routes/partner/partner-list/components/partner-audit-modal/partner-audit-modal.component.ts index d93c1947..c540da56 100644 --- a/src/app/routes/partner/partner-list/components/partner-audit-modal/partner-audit-modal.component.ts +++ b/src/app/routes/partner/partner-list/components/partner-audit-modal/partner-audit-modal.component.ts @@ -28,13 +28,13 @@ export class PartnerAuditModalComponent implements OnInit { if(this.info.channelId) { const value = [{ label: this.info.channelIdLabel, - value: this.info.channelId, + value: this.info.channelSaleslId, }] setTimeout(() => { if(this.sf) { this.sf.getProperty('/channelId')!.schema.enum = value; this.sf.getProperty('/channelId')!.widget.reset(value); - this.sf.setValue('/channelId', this.info.channelId); + this.sf.setValue('/channelId', this.info.channelSaleslId); } })