Skip to content

Commit

Permalink
innerText for wallet name
Browse files Browse the repository at this point in the history
  • Loading branch information
tonyofbyteball committed Feb 25, 2022
1 parent 73d1959 commit dcc2982
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/js/partialClient.js
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ function initWallet() {
var color = root.config.colorFor ? root.config.colorFor[root.focusedClient.credentials.walletId] : '#4A90E2';
if(!color) color = '#4A90E2';
getFromId('name1Color').style.color = color;
getFromId('name1').innerHTML = walletName;
getFromId('name1').innerText = walletName;
getFromId('spinnerBg').style.backgroundColor = color;
getFromId('amountBg').style.backgroundColor = color;
document.getElementsByClassName('page')[1].style.display = 'block';
Expand Down

0 comments on commit dcc2982

Please sign in to comment.