Commit ac4a8e73ac5551ce75e3a3fa4adf0db54c06a063

Authored by Marcelo Puebla
1 parent 924d1d4f5d
Exists in develop

Fix

Referencia
src/app/shared/sinonimo/sinonimo.component.html
... ... @@ -4,7 +4,7 @@
4 4 draggable="false"
5 5 ondragstart="return false;"
6 6 (contextmenu)="false"
7   - (click)="modalRef.hide()"
  7 + (click)="close()"
8 8 class="btn-effect icon-30 mt-2 mr-2 position-absolute right-0 top-0 z-index"
9 9 src="assets/img/icono-cancelar-blanco.svg">
10 10 <p class="col-7 h4 px-0 align-self-center">{{articulo.DetArt}}</p>
src/app/shared/sinonimo/sinonimo.component.ts
... ... @@ -80,4 +80,8 @@ export class SinonimoComponent implements OnInit {
80 80 el.scrollIntoView({ behavior: 'smooth' });
81 81 }
82 82  
  83 + close() {
  84 + this.modalRef.hide();
  85 + }
  86 +
83 87 }