diff --git a/CHANGELOG.md b/CHANGELOG.md index d233b3d..6d54ac8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -51,6 +51,7 @@ v2.0 - 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 +- Fix FLEXIAPI-336 Fix broken ph icons v1.6 ---- diff --git a/flexiapi/resources/views/admin/account/activity/index.blade.php b/flexiapi/resources/views/admin/account/activity/index.blade.php index f8bd80d..c8a4ab4 100644 --- a/flexiapi/resources/views/admin/account/activity/index.blade.php +++ b/flexiapi/resources/views/admin/account/activity/index.blade.php @@ -114,7 +114,7 @@ {{ __('Created') }} - {{ __('Via') }} + {{ __('Via') }} {{ __('Used on') }} diff --git a/flexiapi/resources/views/admin/account/parts/badges.blade.php b/flexiapi/resources/views/admin/account/parts/badges.blade.php index 03b9002..eb25741 100644 --- a/flexiapi/resources/views/admin/account/parts/badges.blade.php +++ b/flexiapi/resources/views/admin/account/parts/badges.blade.php @@ -1,5 +1,5 @@ @if ($account->activated) - + @endif @if ($account->superAdmin) Super Adm. @@ -7,5 +7,5 @@ Adm. @endif @if ($account->blocked) - + @endif \ No newline at end of file diff --git a/flexiapi/resources/views/admin/api_key/index.blade.php b/flexiapi/resources/views/admin/api_key/index.blade.php index 83367d7..2f05d95 100644 --- a/flexiapi/resources/views/admin/api_key/index.blade.php +++ b/flexiapi/resources/views/admin/api_key/index.blade.php @@ -39,7 +39,7 @@ {{ __('Activity expiration delay') }}: {{ $api_key->expires_after_last_used_minutes ? $api_key->expires_after_last_used_minutes . ' min' : __('Never')}} | {{ __('Last used') }}: {{ $api_key->last_used_at ?? __('Never') }} {{ $api_key->created_at }} - + {{ __('By') }}: {{ $api_key->account->identifier }} diff --git a/flexiapi/resources/views/admin/space/index.blade.php b/flexiapi/resources/views/admin/space/index.blade.php index 2effb0b..6ea3420 100644 --- a/flexiapi/resources/views/admin/space/index.blade.php +++ b/flexiapi/resources/views/admin/space/index.blade.php @@ -29,7 +29,7 @@ {{ $space->domain }} - {{ $space->accounts_count }} / @if ($space->max_accounts > 0){{ $space->max_accounts }} @else + {{ $space->accounts_count }} / @if ($space->max_accounts > 0){{ $space->max_accounts }} @else @endif diff --git a/flexiapi/resources/views/admin/space/integration.blade.php b/flexiapi/resources/views/admin/space/integration.blade.php index 5411387..ffe97e4 100644 --- a/flexiapi/resources/views/admin/space/integration.blade.php +++ b/flexiapi/resources/views/admin/space/integration.blade.php @@ -21,7 +21,7 @@
- +

{{ __('Email Server') }}

@if ($space->emailServer) diff --git a/flexiapi/resources/views/admin/space/show.blade.php b/flexiapi/resources/views/admin/space/show.blade.php index b456dbd..5acf749 100644 --- a/flexiapi/resources/views/admin/space/show.blade.php +++ b/flexiapi/resources/views/admin/space/show.blade.php @@ -30,7 +30,7 @@

- +

{{ __('Users') }}

{{ $space->accounts()->count() }} @@ -43,7 +43,7 @@ @endif

- +

{{ __('Expiration') }}

@if ($space->isExpired())

Expired

diff --git a/flexiapi/resources/views/layouts/main.blade.php b/flexiapi/resources/views/layouts/main.blade.php index 18600a8..438464d 100644 --- a/flexiapi/resources/views/layouts/main.blade.php +++ b/flexiapi/resources/views/layouts/main.blade.php @@ -48,7 +48,7 @@ @endif
- {{ __('About') }} + {{ __('About') }} @if (auth()->user()) diff --git a/flexiapi/resources/views/parts/call_logs/table.blade.php b/flexiapi/resources/views/parts/call_logs/table.blade.php index e07633b..9dc09c3 100644 --- a/flexiapi/resources/views/parts/call_logs/table.blade.php +++ b/flexiapi/resources/views/parts/call_logs/table.blade.php @@ -3,7 +3,7 @@ {{ __('From') }} {{ __('To') }} - + diff --git a/flexiapi/resources/views/parts/recovery.blade.php b/flexiapi/resources/views/parts/recovery.blade.php index be8d92b..512649d 100644 --- a/flexiapi/resources/views/parts/recovery.blade.php +++ b/flexiapi/resources/views/parts/recovery.blade.php @@ -1,7 +1,7 @@

- {{ __('Recover your account using your email') }}
+ {{ __('Recover your account using your email') }}
@if (space()->phone_registration) {{ __('Use the mobile app to recover your account using your phone number') }}
@endif - {{ __('Login using a QRCode') }} + {{ __('Login using a QRCode') }}

\ No newline at end of file diff --git a/flexiapi/resources/views/parts/sidebar.blade.php b/flexiapi/resources/views/parts/sidebar.blade.php index 2f3543f..a2b00a7 100644 --- a/flexiapi/resources/views/parts/sidebar.blade.php +++ b/flexiapi/resources/views/parts/sidebar.blade.php @@ -18,7 +18,7 @@ @foreach ($items as $route => $value) current(), route($route)))class="current"@endif href="{{ route($route) }}"> - {{ $value['icon'] }} + {{ $value['title'] }} @endforeach diff --git a/flexiapi/resources/views/parts/terms.blade.php b/flexiapi/resources/views/parts/terms.blade.php index c8b3192..0768fd0 100644 --- a/flexiapi/resources/views/parts/terms.blade.php +++ b/flexiapi/resources/views/parts/terms.blade.php @@ -3,9 +3,9 @@

- {{ __('I accept the Terms and Conditions') }} + {{ __('I accept the Terms and Conditions') }} @if (config('app.privacy_policy_url', null) != null) -
{{ __('I accept the Privacy policy') }} +
{{ __('I accept the Privacy policy') }} @endif

@include('parts.errors', ['name' => 'terms'])