Skip to content

Commit

Permalink
fix baseline type mismatch
Browse files Browse the repository at this point in the history
  • Loading branch information
m-kus committed Mar 27, 2020
1 parent c5d5ffc commit 917425b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/components/ContractItem.vue
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
</v-list-item-content>

<v-list-item-action class="mt-2 mb-3">
<v-list-item-action-text class=""><span class="caption">{{ 1 + (item.tx_count || 0) }}</span> operations till</v-list-item-action-text>
<v-list-item-action-text class=""><span class="caption">{{ item.tx_count || 1 }}</span> operations till</v-list-item-action-text>
<v-list-item-action-text class="overline">
{{ formatDate(item.last_action || item.timestamp) }}
</v-list-item-action-text>
Expand All @@ -25,7 +25,7 @@ export default {
props: {
item: Object,
to: Object,
basetime: Number
basetime: String
},
name: "ContractItem",
methods: {
Expand Down
4 changes: 2 additions & 2 deletions src/components/SimilarItem.vue
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
</v-list-item-content>

<v-list-item-action class="mt-2 mb-4">
<v-list-item-action-text>{{ 1 + (item.tx_count || 0) }} operations till</v-list-item-action-text>
<v-list-item-action-text>{{ item.tx_count || 1 }} operations till</v-list-item-action-text>
<v-list-item-action-text class="overline"> {{ formatDate(item.last_action || item.timestamp) }}</v-list-item-action-text>
<v-list-item-action-text>
<v-tooltip left>
Expand Down Expand Up @@ -50,7 +50,7 @@ export default {
item: Object,
address: String,
network: String,
basetime: Number
basetime: String
},
computed: {
consumed_gas_diff() {
Expand Down

0 comments on commit 917425b

Please sign in to comment.