use correct html element
This commit is contained in:
parent
4c735aa8e4
commit
85f9f8378a
@ -16,7 +16,7 @@
|
|||||||
<div class="info-box-content">
|
<div class="info-box-content">
|
||||||
<span class="info-box-text">{{ $t('user.used.players') }}</span>
|
<span class="info-box-text">{{ $t('user.used.players') }}</span>
|
||||||
<span class="info-box-number">
|
<span class="info-box-number">
|
||||||
<b>{{ playersUsed }}</b> / {{ playersTotal }}
|
<strong>{{ playersUsed }}</strong> / {{ playersTotal }}
|
||||||
</span>
|
</span>
|
||||||
<div class="progress">
|
<div class="progress">
|
||||||
<div class="progress-bar" :style="{ width: playersPercentage + '%' }" />
|
<div class="progress-bar" :style="{ width: playersPercentage + '%' }" />
|
||||||
@ -31,10 +31,10 @@
|
|||||||
<span class="info-box-text">{{ $t('user.used.storage') }}</span>
|
<span class="info-box-text">{{ $t('user.used.storage') }}</span>
|
||||||
<span class="info-box-number">
|
<span class="info-box-number">
|
||||||
<template v-if="storageUsed > 1024">
|
<template v-if="storageUsed > 1024">
|
||||||
<b>{{ ~~(storageUsed / 1024) }}</b> / {{ ~~(storageTotal / 1024) }} MB
|
<strong>{{ ~~(storageUsed / 1024) }}</strong> / {{ ~~(storageTotal / 1024) }} MB
|
||||||
</template>
|
</template>
|
||||||
<template v-else>
|
<template v-else>
|
||||||
<b>{{ storageUsed }}</b> / {{ storageTotal }} KB
|
<strong>{{ storageUsed }}</strong> / {{ storageTotal }} KB
|
||||||
</template>
|
</template>
|
||||||
</span>
|
</span>
|
||||||
<div class="progress">
|
<div class="progress">
|
||||||
|
Loading…
Reference in New Issue
Block a user