Removed damage effects from tree views

The totals of those effects are already accounted for in the displayed number
This commit is contained in:
ThaumRystra
2024-10-29 16:06:46 +02:00
parent fe035a2ff1
commit b90cc2e467
8 changed files with 0 additions and 29 deletions

View File

@@ -18,24 +18,6 @@
<span v-if="model.target === 'self'">to self</span>
</div>
</div>
<template v-if="showExternalDetails">
<div
v-for="effect in (model.amount && model.amount.effects)"
:key="effect._id"
>
<div
v-if="effect.amount.value !== 0"
style="position:relative; top:-15px; left:5px; height:25px;"
>
<inline-effect
:key="effect._id"
hide-breadcrumbs
:data-id="effect._id"
:model="effect"
/>
</div>
</div>
</template>
</div>
</template>