mirror of
https://github.com/h44z/wg-portal.git
synced 2026-09-10 08:46:42 +00:00
chore(ui): use human readable transfer size for total bytes sent/received (#751)
Signed-off-by: Nick Ruffles <nick@ruffles.dev>
This commit is contained in:
@@ -12,6 +12,7 @@ import { settingsStore } from "@/stores/settings";
|
|||||||
import { profileStore } from "@/stores/profile";
|
import { profileStore } from "@/stores/profile";
|
||||||
import { base64_url_encode } from '@/helpers/encoding';
|
import { base64_url_encode } from '@/helpers/encoding';
|
||||||
import { apiWrapper } from "@/helpers/fetch-wrapper";
|
import { apiWrapper } from "@/helpers/fetch-wrapper";
|
||||||
|
import {humanFileSize} from '@/helpers/utils';
|
||||||
|
|
||||||
const { t } = useI18n()
|
const { t } = useI18n()
|
||||||
|
|
||||||
@@ -194,8 +195,8 @@ function ConfigQrUrl() {
|
|||||||
<div class="col-md-12">
|
<div class="col-md-12">
|
||||||
<h4>{{ $t('modals.peer-view.traffic') }}</h4>
|
<h4>{{ $t('modals.peer-view.traffic') }}</h4>
|
||||||
<p><i class="fas fa-long-arrow-alt-down" :title="$t('modals.peer-view.download')"></i> {{
|
<p><i class="fas fa-long-arrow-alt-down" :title="$t('modals.peer-view.download')"></i> {{
|
||||||
selectedStats.BytesReceived }} Bytes / <i class="fas fa-long-arrow-alt-up"
|
humanFileSize(selectedStats.BytesReceived) }} / <i class="fas fa-long-arrow-alt-up"
|
||||||
:title="$t('modals.peer-view.upload')"></i> {{ selectedStats.BytesTransmitted }} Bytes</p>
|
:title="$t('modals.peer-view.upload')"></i> {{ humanFileSize(selectedStats.BytesTransmitted) }}</p>
|
||||||
<h4>{{ $t('modals.peer-view.connection-status') }}</h4>
|
<h4>{{ $t('modals.peer-view.connection-status') }}</h4>
|
||||||
<ul>
|
<ul>
|
||||||
<li>{{ $t('modals.peer-view.pingable') }}: {{ selectedStats.IsPingable }}</li>
|
<li>{{ $t('modals.peer-view.pingable') }}: {{ selectedStats.IsPingable }}</li>
|
||||||
|
|||||||
Reference in New Issue
Block a user