Re-added enhanced wand icon in bio, hiding enhancements bio section if no details are known.
This commit is contained in:
parent
6237aa0c03
commit
35699becf5
|
@ -142,14 +142,24 @@
|
|||
class="bio-item figure"
|
||||
>
|
||||
<dfn class="bio-label"><Icon icon="ruler" />Figure</dfn>
|
||||
<span class="bio-value">{{ actor.bust || '??' }}{{ actor.cup || '?' }}-{{ actor.waist || '??' }}-{{ actor.hip || '??' }}</span>
|
||||
<span class="bio-value">
|
||||
{{ actor.bust || '??' }}{{ actor.cup || '?' }}-{{ actor.waist || '??' }}-{{ actor.hip || '??' }}
|
||||
<Icon
|
||||
v-if="actor.naturalBoobs === false || actor.naturalButt === false"
|
||||
v-tooltip="[actor.naturalBoobs === false ? 'Enhanced boobs' : null, actor.naturalButt === false ? 'Enhanced butt' : null].filter(Boolean).join(', ')"
|
||||
icon="magic-wand2"
|
||||
class="enhanced"
|
||||
/>
|
||||
</span>
|
||||
</li>
|
||||
|
||||
<li
|
||||
v-if="actor.naturalBoobs === false || actor.naturalButt === false"
|
||||
v-if="actor.naturalLips === false || actor.naturalLabia === false
|
||||
|| actor.boobsVolume || actor.boobsPlacement || actor.boobsIncision || actor.boobsImplant
|
||||
|| actor.buttVolume || actor.buttImplant"
|
||||
class="bio-item augmentations hideable"
|
||||
>
|
||||
<dfn class="bio-label"><Icon icon="magic-wand2" />Enhanced</dfn>
|
||||
<dfn class="bio-label"><Icon icon="magic-wand2" />Enhancements</dfn>
|
||||
|
||||
<span class="bio-value">
|
||||
<div
|
||||
|
|
Loading…
Reference in New Issue