You've already forked AstralRinth
forked from didirus/AstralRinth
CMP Update Hotfixes (#729)
* Remove WIP for getting paid * Fix beta badge border * Update money formatting * Add required "not affiliated with Mojang" notice * Replace search video on home page
This commit is contained in:
@@ -49,8 +49,8 @@
|
||||
</div>
|
||||
<div class="metric">
|
||||
<div class="label">Total revenue</div>
|
||||
<div class="value">${{ $formatNumber(payouts.all_time) }}</div>
|
||||
<span>${{ $formatNumber(payouts.last_month) }} this month</span>
|
||||
<div class="value">{{ $formatMoney(payouts.all_time) }}</div>
|
||||
<span>{{ $formatMoney(payouts.last_month) }} this month</span>
|
||||
<!-- <NuxtLink class="goto-link" to="/dashboard/analytics"-->
|
||||
<!-- >View breakdown-->
|
||||
<!-- <ChevronRightIcon-->
|
||||
@@ -61,7 +61,7 @@
|
||||
<div class="metric">
|
||||
<div class="label">Current balance</div>
|
||||
<div class="value">
|
||||
${{ $formatNumber($auth.user.payout_data.balance) }}
|
||||
{{ $formatMoney($auth.user.payout_data.balance) }}
|
||||
</div>
|
||||
<NuxtLink
|
||||
v-if="$auth.user.payout_data.balance >= minWithdraw"
|
||||
|
||||
@@ -14,7 +14,7 @@
|
||||
<div v-if="$auth.user.payout_data.balance >= minWithdraw">
|
||||
<p>
|
||||
You have
|
||||
<strong>${{ $auth.user.payout_data.balance }}</strong>
|
||||
<strong>{{ $formatMoney($auth.user.payout_data.balance) }}</strong>
|
||||
available to withdraw.
|
||||
<span v-if="!enrolled"
|
||||
>Enroll in the Creator Monetization Program to withdraw your
|
||||
@@ -37,13 +37,13 @@
|
||||
</div>
|
||||
<p v-else-if="$auth.user.payout_data.balance > 0">
|
||||
You have made
|
||||
<strong>${{ $auth.user.payout_data.balance }}</strong
|
||||
<strong>{{ $formatMoney($auth.user.payout_data.balance) }}</strong
|
||||
>, however you have not yet met the minimum of ${{ minWithdraw }} to
|
||||
withdraw.
|
||||
</p>
|
||||
<p v-else>
|
||||
You have made
|
||||
<strong>${{ $auth.user.payout_data.balance }}</strong
|
||||
<strong>{{ $formatMoney($auth.user.payout_data.balance) }}</strong
|
||||
>, which is under the minimum of ${{ minWithdraw }} to withdraw.
|
||||
</p>
|
||||
<div v-if="!enrolled">
|
||||
|
||||
Reference in New Issue
Block a user