diff --git a/luckydiamond/src/pages/ProfilePage.vue b/luckydiamond/src/pages/ProfilePage.vue index 6e15912..2f99436 100644 --- a/luckydiamond/src/pages/ProfilePage.vue +++ b/luckydiamond/src/pages/ProfilePage.vue @@ -94,7 +94,7 @@ export default { amount: amount } - this.arrayHistory.push(historyPayments) + this.arrayHistory.unshift(historyPayments) }, claimDataWithdraw(amount) { const historyPayments = { @@ -104,7 +104,7 @@ export default { amount: -amount } - this.arrayHistory.push(historyPayments) + this.arrayHistory.unshift(historyPayments) } } }