Skip to content

Commit

Permalink
AccountDetails and ContractDetails display memo as raw format + decod…
Browse files Browse the repository at this point in the history
…ed format as extra when relevant.

Signed-off-by: Simon Viénot <[email protected]>
  • Loading branch information
svienot committed Nov 28, 2023
1 parent b477230 commit 6a86f25
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/pages/AccountDetails.vue
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@
<Property id="memo">
<template v-slot:name>Memo</template>
<template v-slot:value>
<BlobValue v-bind:base64="true" v-bind:blob-value="account?.memo" v-bind:show-none="true"/>
<BlobValue v-bind:base64="true" v-bind:blob-value="account?.memo" v-bind:show-none="true" :show-base64-as-extra="true"/>
</template>
</Property>

Expand Down
2 changes: 1 addition & 1 deletion src/pages/ContractDetails.vue
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@
<Property id="memo">
<template v-slot:name>Memo</template>
<template v-slot:value>
<BlobValue :blob-value="contract?.memo" :show-none="true" :base64="true"/>
<BlobValue :blob-value="contract?.memo" :show-none="true" :base64="true" :show-base64-as-extra="true"/>
</template>
</Property>
<Property id="createTransaction">
Expand Down

0 comments on commit 6a86f25

Please sign in to comment.