Commit 757dbe53ebd8a422e0a8e553f245ab7bb772d6f2
1 parent
6f920dbea4
Exists in
develop
Fix
Lint errors
Showing
2 changed files
with
3 additions
and
3 deletions
Show diff stats
src/app/modules/pago-electronico/pago-electronico.component.ts
src/app/shared/header-publicidad/header-publicidad.component.ts
... | ... | @@ -85,9 +85,9 @@ export class HeaderPublicidadComponent implements OnInit { |
85 | 85 | ignoreBackdropClick: true, |
86 | 86 | class: 'modal-dialog-centered' |
87 | 87 | }); |
88 | - this.modalRef.content.onClose.subscribe((res) => { | |
88 | + this.modalRef.content.onClose.subscribe((resClose) => { | |
89 | 89 | this.modalRef = null; |
90 | - if (!res) return; | |
90 | + if (!resClose) return; | |
91 | 91 | this.sinonimoService.getSinonimos(articulo.CodSec, articulo.CodArt) |
92 | 92 | .subscribe((res: ISinonimo[]) => { |
93 | 93 | if (res.length) { |