mirror of
https://github.com/VueTorrent/VueTorrent.git
synced 2025-03-14 12:10:18 +03:00
fix: Remove capitalization (#807)
This commit is contained in:
parent
0d2020e816
commit
856b3d7b5c
1 changed files with 3 additions and 3 deletions
|
@ -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>
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue