mirror of
https://github.com/PhaseII-eAmusement-Network/PhaseWeb3-Vue.git
synced 2026-09-09 17:55:16 -05:00
Add number to flare skills
This commit is contained in:
@@ -79,6 +79,11 @@ defineProps({
|
||||
{{ label }}
|
||||
</h3>
|
||||
<h1 class="text-2xl md:text-3xl leading-tight font-semibold">
|
||||
<div
|
||||
:class="numColor + (smallContent ? ` text-lg font-normal` : ``)"
|
||||
>
|
||||
<slot />
|
||||
</div>
|
||||
<NumberDynamic
|
||||
v-if="number"
|
||||
:class="numColor"
|
||||
@@ -86,11 +91,6 @@ defineProps({
|
||||
:prefix="prefix"
|
||||
:suffix="suffix"
|
||||
/>
|
||||
<div
|
||||
:class="numColor + (smallContent ? ` text-lg font-normal` : ``)"
|
||||
>
|
||||
<slot />
|
||||
</div>
|
||||
</h1>
|
||||
</div>
|
||||
</BaseLevel>
|
||||
|
||||
@@ -538,6 +538,7 @@ const groupedTimeline = computed(() => {
|
||||
v-if="myProfile.flare_single"
|
||||
label="SP Flare"
|
||||
:num-color="getFlareLevel(myProfile.flare_single).textColor"
|
||||
:number="myProfile.flare_single"
|
||||
>
|
||||
{{ getFlareLevel(myProfile.flare_single).label }}
|
||||
</CardBoxWidget>
|
||||
@@ -545,6 +546,7 @@ const groupedTimeline = computed(() => {
|
||||
v-if="myProfile.flare_double"
|
||||
label="DP Flare"
|
||||
:num-color="getFlareLevel(myProfile.flare_double).textColor"
|
||||
:number="myProfile.flare_double"
|
||||
>
|
||||
{{ getFlareLevel(myProfile.flare_double).label }}
|
||||
</CardBoxWidget>
|
||||
|
||||
Reference in New Issue
Block a user