Set default active tab to liquid network.

This commit is contained in:
Miguel Medeiros 2021-09-03 16:48:37 -03:00
parent edc15c9243
commit 7dd32a96b9

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;
});
}