Skip to content

Commit

Permalink
nit: fix address display
Browse files Browse the repository at this point in the history
  • Loading branch information
tyzbit committed May 1, 2022
1 parent ee11e55 commit 67d8e33
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/static/desktop.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ $(document).ready(function () {
for (let i = 0; i < data.addresses.length; i++) {
options =
options +
`<option value="${data.addresses[i].Address}">${data.addresses[i].Nickname}" (address)</option>`;
`<option value="${data.addresses[i].Address}">${data.addresses[i].Nickname} (address)</option>`;
}
}
if (data.pubkeys) {
Expand Down

0 comments on commit 67d8e33

Please sign in to comment.