Skip to content

Commit

Permalink
Merge #1407 #1408
Browse files Browse the repository at this point in the history
1407: Address copy button bug fix r=popzxc a=AntonD3



1408: Remove `ci` Dockerfile r=popzxc a=AntonD3



Co-authored-by: AntonD3 <[email protected]>
  • Loading branch information
bors-matterlabs-dev[bot] and AntonD3 authored Feb 18, 2021
3 parents 81da602 + 67a621b + 6d70741 commit 60fb7d0
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 26 deletions.
4 changes: 4 additions & 0 deletions changelog/infrastructure.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ components, the logs will have the following format:

### Removed

- (`ci/Dockerfile`): `dockerci/Dockerfile` file with folder was removed , because it is outdated.

### Changed

### Added
Expand All @@ -19,6 +21,8 @@ components, the logs will have the following format:

### Fixed

- (`explorer`): Bug with 'Click to copy' button for account address.

## Release 2021-02-02

### Removed
Expand Down
21 changes: 0 additions & 21 deletions docker/ci/Dockerfile

This file was deleted.

7 changes: 2 additions & 5 deletions infrastructure/explorer/src/Account.vue
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<b-card no-body class="table-margin-hack">
<b-table responsive thead-class="displaynone" class="nowrap" :items="accountDataProps">
<template v-slot:cell(value)="data">
<Entry v-if="data.item.name == 'Address'" :value="data.item.value" />
<Entry class="bigger-text" v-if="data.item.name == 'Address'" :value="data.item.value" />
<Entry v-else-if="data.item.name == 'Account Id'" :value="data.item.value" />
<Entry v-else-if="data.item.name == 'Verified nonce'" :value="data.item.value" />
<Entry v-else-if="data.item.name == 'Committed nonce'" :value="data.item.value" />
Expand Down Expand Up @@ -232,10 +232,7 @@ export default {
return dataProps;
},
addressEntry() {
return makeEntry('Address')
.innerHTML(`<a class="bigger-text">${this.address}</a> `)
.copyable()
.tooltipRight(true);
return makeEntry('Address').innerHTML(this.address).copyable().tooltipRight(true);
},
accountIdEntry() {
return makeEntry('Account Id').innerHTML(this.accountId);
Expand Down

0 comments on commit 60fb7d0

Please sign in to comment.