Skip to content

Commit

Permalink
Changed email to uuid on the account settings view.
Browse files Browse the repository at this point in the history
I'm not a fan of showing a user's email on the UI.
  • Loading branch information
dscalzi committed Jul 2, 2018
1 parent 3131002 commit 41aae0c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/assets/js/scripts/settings.js
Original file line number Diff line number Diff line change
Expand Up @@ -376,8 +376,8 @@ function populateAuthAccounts(){
<div class="settingsAuthAccountDetailValue">${acc.displayName}</div>
</div>
<div class="settingsAuthAccountDetailPane">
<div class="settingsAuthAccountDetailTitle">${acc.displayName === acc.username ? 'UUID' : 'Email'}</div>
<div class="settingsAuthAccountDetailValue">${acc.displayName === acc.username ? acc.uuid : acc.username}</div>
<div class="settingsAuthAccountDetailTitle">UUID</div>
<div class="settingsAuthAccountDetailValue">${acc.uuid}</div>
</div>
</div>
<div class="settingsAuthAccountActions">
Expand Down

0 comments on commit 41aae0c

Please sign in to comment.