Resolve conflict resulting from 315b759

This commit is contained in:
hunicus 2022-04-12 15:33:24 -04:00
parent 039e6bbe77
commit 88c50f7107
No known key found for this signature in database
GPG Key ID: 3AA9E3763EBB3B23

View File

@ -32,5 +32,10 @@ export class DocsComponent implements OnInit {
this.env = this.stateService.env;
this.showWebSocketTab = ( ! ( ( this.stateService.network === "bisq" ) || ( this.stateService.network === "liquidtestnet" ) ) );
this.showFaqTab = ( this.env.BASE_MODULE === 'mempool' ) ? true : false;
document.querySelector<HTMLElement>( "html" ).style.scrollBehavior = "smooth";
}
ngOnDestroy(): void {
document.querySelector<HTMLElement>( "html" ).style.scrollBehavior = "auto";
}
}