Skip to content

Commit

Permalink
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/components/Tables/RecentlyCalledContracts.vue
Original file line number Diff line number Diff line change
@@ -31,7 +31,7 @@
style="font-size: 16px;"
/>
</span>
<span v-else v-html="helpers.shortcut(item.address)"></span>
<span v-else v-html="helpers.shortcut(item.address, 8)"></span>
</v-btn>
</td>
<td>
@@ -124,7 +124,7 @@ export default {
},
data() {
return {
aliasMaxLength: 12,
aliasMaxLength: 24,
page: 0,
loadingRecentlyCalledContractsStatus: DATA_LOADING_STATUSES.NOTHING,
recentlyCalledTableHeaders: [
4 changes: 2 additions & 2 deletions src/views/network/Network.vue
Original file line number Diff line number Diff line change
@@ -2,10 +2,10 @@
<div class="fill-height pa-8">
<v-breadcrumbs :items="breadcrumbs" divider="/" class="pl-0" />
<v-row class="fill-height" no-gutters>
<v-col cols="3">
<v-col cols="2">
<SideBar :loading="loading" :states="states" :network="currentNetwork" />
</v-col>
<v-col cols="9">
<v-col cols="10">
<router-view :network="currentNetwork" :state="currentState"></router-view>
</v-col>
</v-row>

0 comments on commit 435e59b

Please sign in to comment.