Set default active tab to liquid network.

This commit is contained in:
Miguel Medeiros 2021-09-03 16:48:37 -03:00
parent c256daf8c8
commit 71229b94c8
No known key found for this signature in database
GPG Key ID: 819EDEE4673F3EBB

View File

@ -3639,7 +3639,7 @@ export class ApiDocsComponent implements OnInit {
};
this.network$.subscribe((network) => {
this.active = (network === 'liquid') ? 1 : 0;
this.active = (network === 'liquid') ? 2 : 0;
});
}