Aleksandr Bautin 10 months ago
parent
commit
0a69c37140
No known key found for this signature in database
GPG Key ID: 9B3364A12DFE9211
  1. 7
      src/components/ZoneTable.vue
  2. 2
      src/views/Explore.vue

7
src/components/ZoneTable.vue

@ -33,7 +33,7 @@
</thead>
<tbody class="table_content">
<tr v-for="zone in zones" :key="zone.zone">
<td class="zone">
<td v-if="zone.zone !== 'ton'" class="zone">
<router-link
:to="{
name: 'GetZ',
@ -44,7 +44,10 @@
{{ zone.zone }}
</router-link>
</td>
<td style="display: flex; justify-content: flex-end">
<td
v-if="zone.zone !== 'ton'"
style="display: flex; justify-content: flex-end"
>
<ZonePricing :zone="zone" />
</td>
</tr>

2
src/views/Explore.vue

@ -255,7 +255,7 @@ export default {
messages: [
{
amount: (0.05 * 1000000000).toString(),
address: this.wallet_rec ?? this.result.nft_info.address,
address: this.result.nft_info.address,
payload: message,
},
],

Loading…
Cancel
Save