From 22797eb493822a67fee9b28240e9d3847b0479e4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Timoth=C3=A9e=20Jaussoin?= Date: Thu, 19 Jun 2025 10:13:53 +0200 Subject: [PATCH] Fix FLEXIAPI-335 Safari rendering issues with font icons --- CHANGELOG.md | 1 + .../resources/views/account/api_key.blade.php | 2 +- .../views/account/dashboard.blade.php | 28 +++++------ .../resources/views/account/delete.blade.php | 2 +- .../views/account/device/index.blade.php | 2 +- .../views/account/email/change.blade.php | 2 +- .../views/account/email/validate.blade.php | 2 +- .../resources/views/account/login.blade.php | 2 +- .../views/account/password.blade.php | 4 +- .../views/account/password_changed.blade.php | 2 +- .../views/account/password_reset.blade.php | 2 +- .../views/account/phone/change.blade.php | 2 +- .../views/account/phone/validate.blade.php | 2 +- .../views/account/recovery/confirm.blade.php | 2 +- .../views/account/recovery/show.blade.php | 2 +- .../views/account/register/email.blade.php | 2 +- .../views/account/register/phone.blade.php | 2 +- .../admin/account/activity/index.blade.php | 8 +-- .../admin/account/contact/create.blade.php | 2 +- .../admin/account/contact/index.blade.php | 10 ++-- .../views/admin/account/create_edit.blade.php | 4 +- .../views/admin/account/delete.blade.php | 2 +- .../admin/account/external/delete.blade.php | 2 +- .../admin/account/external/show.blade.php | 4 +- .../admin/account/import/check.blade.php | 4 +- .../admin/account/import/create.blade.php | 2 +- .../views/admin/account/index.blade.php | 10 ++-- .../admin/account/parts/badges.blade.php | 4 +- .../provisioning_email/create.blade.php | 4 +- .../reset_password_email/create.blade.php | 4 +- .../views/admin/account/show.blade.php | 50 +++++++++---------- .../admin/account/statistics/show.blade.php | 10 ++-- .../statistics/show_call_logs.blade.php | 2 +- .../views/admin/account/type/index.blade.php | 8 +-- .../views/admin/api_key/create.blade.php | 2 +- .../views/admin/api_key/delete.blade.php | 4 +- .../views/admin/api_key/index.blade.php | 6 +-- .../contacts_list/contacts/add.blade.php | 4 +- .../admin/contacts_list/create_edit.blade.php | 10 ++-- .../admin/contacts_list/delete.blade.php | 2 +- .../views/admin/contacts_list/index.blade.php | 4 +- .../views/admin/phone_country/index.blade.php | 10 ++-- .../admin/space/administration.blade.php | 2 +- .../views/admin/space/configuration.blade.php | 2 +- .../views/admin/space/create.blade.php | 2 +- .../views/admin/space/delete.blade.php | 2 +- .../views/admin/space/edit.blade.php | 2 +- .../admin/space/email_server/delete.blade.php | 4 +- .../admin/space/email_server/show.blade.php | 2 +- .../views/admin/space/index.blade.php | 8 +-- .../views/admin/space/integration.blade.php | 4 +- .../views/admin/space/show.blade.php | 14 +++--- .../admin/statistics/parts/filters.blade.php | 2 +- .../views/admin/statistics/show.blade.php | 2 +- .../admin/statistics/show_call_logs.blade.php | 2 +- flexiapi/resources/views/errors/490.blade.php | 2 +- .../resources/views/layouts/main.blade.php | 6 +-- .../views/parts/call_logs/table.blade.php | 2 +- .../resources/views/parts/recovery.blade.php | 6 +-- .../resources/views/parts/terms.blade.php | 4 +- 60 files changed, 151 insertions(+), 150 deletions(-) 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')
-

keyAPI Key

+

API Key

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')
-

gauge {{ __('My Account') }}

+

{{ __('My Account') }}

-

hand-waving {{ __('Welcome on :app_name' , ['app_name' => space()->name]) }}

+

{{ __('Welcome on :app_name' , ['app_name' => space()->name]) }}

- 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 @@

-

person {{ __('Information') }}

+

{{ __('Information') }}

-

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