Skip to content

Commit

Permalink
bug fix for new field
Browse files Browse the repository at this point in the history
  • Loading branch information
MissMonacoin committed Oct 20, 2018
1 parent cbe99b3 commit e7d7c8a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions component/tokenInfo.html
Original file line number Diff line number Diff line change
Expand Up @@ -65,19 +65,19 @@
</v-ons-list-item>
<v-ons-list-item>
<div class="center">小数点分割</div>
<div class="right">{{asset.divisible?"可能":"不可能"}}</div>
<div class="right">{{asset.divisible===true?"可能":"不可能"}}</div>
</v-ons-list-item>
<v-ons-list-item>
<div class="center">上場</div>
<div class="right">{{asset.listed?"できる":"できない"}}</div>
<div class="right">{{asset.listed===false?"できない":"できる"}}</div>
</v-ons-list-item>
<v-ons-list-item>
<div class="center">ロック</div>
<div class="right">{{asset.locked?"されている":"されていない"}}</div>
<div class="right">{{asset.locked===true?"されている":"されていない"}}</div>
</v-ons-list-item>
<v-ons-list-item>
<div class="center">送金ロック</div>
<div class="right">{{asset.reassignable?"されていない":"されている"}}</div>
<div class="right">{{asset.reassignable===false?"されている":"されていない"}}</div>
</v-ons-list-item>
</div>
<div v-if="history.length">
Expand Down

0 comments on commit e7d7c8a

Please sign in to comment.