Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ui: remove token contract address from ui to avoid confusion #3079

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions client/webserver/site/src/css/wallets.scss
Original file line number Diff line number Diff line change
Expand Up @@ -160,10 +160,6 @@
width: 18px;
height: 18px;
}

#contractAddress {
opacity: 0.4;
}
}

.peers-table-icon {
Expand Down
1 change: 0 additions & 1 deletion client/webserver/site/src/html/wallets.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,6 @@
<img id="tokenParentLogo" class="ms-1">
<span id="tokenParentName"></span>
</div>
<div id="contractAddress" class="fs14 mt-2"></div>
</div>

<div class="flex-stretch-column flex-md-row" id="walletDetails">
Expand Down
1 change: 0 additions & 1 deletion client/webserver/site/src/js/wallets.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1003,7 +1003,6 @@ export default class WalletsPage extends BasePage {
const parentAsset = app().assets[token.parentID]
page.tokenParentLogo.src = Doc.logoPath(parentAsset.symbol)
page.tokenParentName.textContent = parentAsset.name
page.contractAddress.textContent = token.contractAddress
Doc.show(page.tokenInfoBox)
}
if (wallet) {
Expand Down
Loading