fix: Remove capitalization (#807)

This commit is contained in:
Rémi Marseault 2023-05-10 06:47:48 +02:00 committed by GitHub
parent 0d2020e816
commit 856b3d7b5c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -11,9 +11,9 @@
</template>
<span>{{ $t('navbar.sessionStats.tooltip') }}</span>
</v-tooltip>
<StorageCard class="mb-4 mt-4" :label="titleCase($t('downloaded'))" color="download" :value="getDownload" />
<StorageCard :label="titleCase($t('uploaded'))" color="upload" :value="getUpload" />
<StringCard v-if="!isSession" class="mt-4" :label="titleCase($t('ratio'))" color="ratio" :value="getRatio" />
<StorageCard class="mb-4 mt-4" :label="$t('downloaded')" color="download" :value="getDownload" />
<StorageCard :label="$t('uploaded')" color="upload" :value="getUpload" />
<StringCard v-if="!isSession" class="mt-4" :label="$t('ratio')" color="ratio" :value="getRatio" />
</div>
</template>