Commit 15255571 authored by Olivia Madrid's avatar Olivia Madrid

remove no-scroll class when modal is closed via input from parent component

1 merge request!698Wallet token onboarding and settings
Pipeline #108181200 running with stages
......@@ -18,9 +18,7 @@ export class WalletModalComponent implements OnDestroy {
@Input()
public set showModal(val: boolean) {
this._showModal = val;
if (val) {
this.show();
}
val ? this.show() : this.close();
}
@Output() closeModal: EventEmitter<any> = new EventEmitter();
......
Please register or to comment