Skip to content
This repository has been archived by the owner on Apr 4, 2022. It is now read-only.

Commit

Permalink
Fix to support network IDs (related to mailchain/mailchain-legacy#281)
Browse files Browse the repository at this point in the history
  • Loading branch information
tboeckmann committed Nov 30, 2019
1 parent f57d755 commit ec90c63
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/inbox/inbox.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -254,8 +254,8 @@ export class InboxComponent implements OnInit {
protocols.forEach(protocol => {
protocol["networks"].forEach(network => {
this.networks.push({
label: network,
value: network,
label: network["name"],
value: network["name"],
})
});
});
Expand Down

0 comments on commit ec90c63

Please sign in to comment.