Update frontend/src/components/DecayInformations/DecayInformation-Short.vue

Co-authored-by: Ulf Gebhardt <ulf.gebhardt@webcraft-media.de>
This commit is contained in:
Alexander Friedland 2022-03-06 18:33:06 +01:00 committed by GitHub
parent b1d6f36025
commit 132de9d00f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,6 +1,6 @@
<template>
<div class="decayinformation-short">
<span> {{ decay ? $n(decay.decay * -1, 'decimal') : '' }}</span>
<span> {{ decay ? $n(Number(decay.decay) * -1, 'decimal') : '' }}</span>
</div>
</template>
<script>