From 95bb0fc2657f3cdf671af50c7455ae3060171429 Mon Sep 17 00:00:00 2001 From: wiz Date: Sun, 18 Oct 2020 13:53:45 +0900 Subject: [PATCH] Fix Bisq API docs page from not expanding on load --- frontend/src/app/components/api-docs/api-docs.component.ts | 3 --- 1 file changed, 3 deletions(-) diff --git a/frontend/src/app/components/api-docs/api-docs.component.ts b/frontend/src/app/components/api-docs/api-docs.component.ts index 5d8966f28..00bc026f1 100644 --- a/frontend/src/app/components/api-docs/api-docs.component.ts +++ b/frontend/src/app/components/api-docs/api-docs.component.ts @@ -22,9 +22,6 @@ export class ApiDocsComponent implements OnInit { this.network$ = merge(of(''), this.stateService.networkChanged$); this.websocketService.want(['blocks']); - if (this.stateService.network === 'bisq') { - this.active = 2; - } if (document.location.port !== '') { this.hostname = this.hostname + ':' + document.location.port; }