Skip to content

Commit

Permalink
refactor(Proof detail): add history section at the bottom (#960)
Browse files Browse the repository at this point in the history
  • Loading branch information
raphodn authored Oct 16, 2024
1 parent 3cbef3f commit b71b4b6
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/views/ProofDetail.vue
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,12 @@
<v-progress-circular indeterminate :size="30" />
</v-col>
</v-row>

<v-row v-if="proof">
<v-col cols="12" sm="6">
<HistoryCard :price="proof" />
</v-col>
</v-row>
</template>

<script>
Expand All @@ -40,6 +46,7 @@ export default {
ProofCard: defineAsyncComponent(() => import('../components/ProofCard.vue')),
LoadedCountChip: defineAsyncComponent(() => import('../components/LoadedCountChip.vue')),
PriceCard: defineAsyncComponent(() => import('../components/PriceCard.vue')),
HistoryCard: defineAsyncComponent(() => import('../components/HistoryCard.vue')),
},
data() {
return {
Expand Down

0 comments on commit b71b4b6

Please sign in to comment.