Skip to content

Commit

Permalink
[STASH] :: #1738
Browse files Browse the repository at this point in the history
  • Loading branch information
migbash committed Oct 16, 2023
1 parent c1093be commit a234118
Showing 1 changed file with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,7 @@
-->
<td>
<p>
${competitionObject?.data?.entry_fee ?? '-'}
{competitionObject?.data?.entry_fee ?? '-'} BTA
</p>
</td>

Expand All @@ -283,7 +283,7 @@
-->
<td>
<p>
${toDecimalFix((competitionObject?.data?.total_prize - competitionObject?.data?.betarena_commission), 2, true) ?? ''}
{toDecimalFix((competitionObject?.data?.total_prize - competitionObject?.data?.betarena_commission), 2, true) ?? ''} BTA
</p>
</td>

Expand All @@ -292,7 +292,7 @@
-->
<td>
<p>
${toDecimalFix(competitionPotentialUserWin, 2, true) ?? '-'}
{toDecimalFix(competitionPotentialUserWin, 2, true) ?? '-'} BTA
</p>
</td>

Expand Down Expand Up @@ -367,7 +367,7 @@
-->
<td>
<p>
${toDecimalFix(competitionPotentialUserWin, 2, true) ?? '-'}
{toDecimalFix(competitionPotentialUserWin, 2, true) ?? '-'} BTA
</p>
<p
class=
Expand Down Expand Up @@ -561,13 +561,13 @@
{translationObject2?.categories?.["1"] ?? '-'}

{:else if item == 'entry_fee'}
${competitionObject?.data?.entry_fee ?? '-'}
{competitionObject?.data?.entry_fee ?? '-'} BTA

{:else if item == 'total_prize'}
${toDecimalFix((competitionObject?.data?.total_prize - competitionObject?.data?.betarena_commission), 2, true) ?? ''}
{toDecimalFix((competitionObject?.data?.total_prize - competitionObject?.data?.betarena_commission), 2, true) ?? ''} BTA

{:else if item == 'potential_win'}
${toDecimalFix(competitionPotentialUserWin, 2, true) ?? '-'}
{toDecimalFix(competitionPotentialUserWin, 2, true) ?? '-'} BTA

{:else if item == 'forecast'}
{competitionUserForecast ?? '-'}
Expand Down

0 comments on commit a234118

Please sign in to comment.