change GTT to GDT

This commit is contained in:
ogerly 2021-03-01 17:19:13 +01:00
parent 3339f42975
commit d2cfbfeac5
2 changed files with 5 additions and 5 deletions

View File

@ -181,7 +181,7 @@ export default {
console.log("this.form.amount", this.form.amount) console.log("this.form.amount", this.form.amount)
console.log("this.form.memo", this.form.memo) console.log("this.form.memo", this.form.memo)
this.$store.state.ajaxCreateData.session_id = this.$cookies.get('gdd_session_id'), this.$store.state.ajaxCreateData.session_id = this.$cookies.get('gdd_session_id')
this.$store.state.ajaxCreateData.email = this.form.email, this.$store.state.ajaxCreateData.email = this.form.email,
this.$store.state.ajaxCreateData.amount = this.form.amount, this.$store.state.ajaxCreateData.amount = this.form.amount,
this.$store.state.ajaxCreateData.memo = this.form.memo, this.$store.state.ajaxCreateData.memo = this.form.memo,

View File

@ -15,11 +15,11 @@
<b-col xl="6" md="6"> <b-col xl="6" md="6">
<stats-card :title="$t('site.overview.gradido_received')" <stats-card :title="$t('site.overview.gradido_received')"
type="gradient-orange" type="gradient-orange"
:sub-title="balance_gtt" :sub-title="balance_gdt"
class="mb-4"> class="mb-4">
{{ balance_gtt }} GTT {{ balance_gdt }} GDT
<template slot="footer"> <template slot="footer">
<span class="text-nowrap">Wird nur angezeigt wenn user GTT besitzt.</span> <span class="text-nowrap">Wird nur angezeigt wenn user GDT besitzt.</span>
</template> </template>
</stats-card> </stats-card>
</b-col> </b-col>
@ -33,7 +33,7 @@ export default {
data(){ data(){
return { return {
balance_gdd: this.$store.state.user.balance, balance_gdd: this.$store.state.user.balance,
balance_gtt: "0", balance_gdt: "0",
} }
}, },
}; };