diff --git a/CHANGELOG.md b/CHANGELOG.md index 5ffb134..d233b3d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -50,6 +50,7 @@ v2.0 - Fix FLEXIAPI-329 Use correct routes for accounts devices - Fix FLEXIAPI-330 Remove the ConfirmedRegistration email and related code - Fix FLEXIAPI-324 Add an app setup wizard page +- Fix FLEXIAPI-335 Safari rendering issues with font icons v1.6 ---- diff --git a/flexiapi/resources/views/account/api_key.blade.php b/flexiapi/resources/views/account/api_key.blade.php index 01b709d..3b0503f 100644 --- a/flexiapi/resources/views/account/api_key.blade.php +++ b/flexiapi/resources/views/account/api_key.blade.php @@ -8,7 +8,7 @@ @section('content')
You can generate an API key and use it to request the different API endpoints, check the related API documentation to know how to use that key.
diff --git a/flexiapi/resources/views/account/dashboard.blade.php b/flexiapi/resources/views/account/dashboard.blade.php index 27c6b12..09f70ef 100644 --- a/flexiapi/resources/views/account/dashboard.blade.php +++ b/flexiapi/resources/views/account/dashboard.blade.php @@ -2,13 +2,13 @@ @section('content')- envelope + @if (!empty($account->email)) {{ $account->email }} @else @@ -19,7 +19,7 @@ @if (space()->phone_registration)
- phone + @if (!empty($account->phone)) {{ $account->phone }} @else @@ -30,14 +30,14 @@ @endif
- devices + {{ __('Devices') }} {{ __('Manage') }}
- lock + {{ __('Password') }} @if ($account->passwords()->count() > 0) @@ -49,7 +49,7 @@
- key + {{ __('API Key') }} {{ __('Manage') }} @@ -57,7 +57,7 @@
- trash + {{ __('My Account') }} {{ __('Delete') }} @@ -66,18 +66,18 @@
envelope {{ __('SIP Adress') }}: sip:{{ $account->identifier }}
-user {{ __('Username') }}: {{ $account->username }}
-globe-hemisphere-west {{ __('Domain') }}: {{ $account->domain }}
+{{ __('SIP Adress') }}: sip:{{ $account->identifier }}
+{{ __('Username') }}: {{ $account->username }}
+{{ __('Domain') }}: {{ $account->domain }}
@if (!empty(space()?->account_proxy_registrar_address)) -hard-drive Proxy/registrar address: sip:{{ space()?->account_proxy_registrar_address }} +
Proxy/registrar address: sip:{{ space()?->account_proxy_registrar_address }}
@endif @if (!empty(config('app.transport_protocol_text'))) -sliders {{ __('Transport') }}: {{ config('app.transport_protocol_text') }}
+{{ __('Transport') }}: {{ config('app.transport_protocol_text') }}
@endif