Skip to content

Commit

Permalink
Fix block height property undefined for pending transactions
Browse files Browse the repository at this point in the history
Fix for nebulasio#41 block height property undefined for pending transactions
  • Loading branch information
KEMiCZA committed May 12, 2018
1 parent 3c83fdd commit f81db6a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion explorer-front/src/routes/txs.vue
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
<router-link v-bind:to='fragApi + "/tx/" + o.hash'>{{ o.hash }}</router-link>
</td>
<td>
<router-link v-bind:to='fragApi + "/block/" + o.block.height'>{{ o.block.height }}</router-link>
<router-link v-if=o.block v-bind:to='fragApi + "/block/" + o.block.height'>{{ o.block.height }}</router-link>
</td>
<!--
<td>
Expand Down

0 comments on commit f81db6a

Please sign in to comment.