Skip to content

Commit

Permalink
feat: adjust button on payment detail - success (#521)
Browse files Browse the repository at this point in the history
  • Loading branch information
ciniiia authored Jul 15, 2022
1 parent 286750d commit 9b1e3a6
Showing 1 changed file with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -90,20 +90,20 @@
div(v-if="success && status === 'Paid'" class="d-flex justify-space-between align-center pa-4 mt-8 me-3")
ui-debio-button(
color="secondary"
width="46%"
width="50%"
height="35"
@click="toInstruction(dataService.dnaCollectionProcess)"
style="font-size: 10px;"
style="font-size: 9px;"
@click="toPaymentHistory"
outlined
) View Instruction
) Go To Payment History

ui-debio-button(
color="secondary"
width="46%"
width="42%"
height="35"
style="font-size: 10px;"
@click="toEtherscan"
) View Etherscan
@click="toInstruction(dataService.dnaCollectionProcess)"
style="font-size: 9px;"
) View Instruction

div(v-if="status === 'Unpaid'" class="d-flex justify-space-between align-center pa-4 mt-8 me-3")
ui-debio-button(
Expand Down Expand Up @@ -213,7 +213,7 @@ export default {
async mounted () {
this.stakingFlow = false
if(this.$route.params.id) {
if(this.$route.params.hash) {
this.success = true
}
Expand Down

0 comments on commit 9b1e3a6

Please sign in to comment.