Compare commits

..

2 Commits

3 changed files with 16 additions and 6 deletions

View File

@ -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

4
package-lock.json generated
View File

@ -1,11 +1,11 @@
{
"name": "traxxx-web",
"version": "0.41.3",
"version": "0.41.4",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"version": "0.41.3",
"version": "0.41.4",
"dependencies": {
"@brillout/json-serializer": "^0.5.8",
"@dicebear/collection": "^7.0.5",

View File

@ -87,7 +87,7 @@
"overrides": {
"vite": "$vite"
},
"version": "0.41.3",
"version": "0.41.4",
"imports": {
"#/*": "./*.js"
}