From 26069d342363cedd680e6320161096c43f17cd6a Mon Sep 17 00:00:00 2001 From: Vincent Lahaye Date: Wed, 6 Mar 2024 15:52:02 +0100 Subject: [PATCH] Fix modal bug in connected-accounts-form.blade.php Not a big deal, but the modal would break and mess the display. --- resources/views/profile/connected-accounts-form.blade.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/resources/views/profile/connected-accounts-form.blade.php b/resources/views/profile/connected-accounts-form.blade.php index 1d61211..1d51a5c 100644 --- a/resources/views/profile/connected-accounts-form.blade.php +++ b/resources/views/profile/connected-accounts-form.blade.php @@ -37,14 +37,14 @@
@if ($account->avatar_path !== null && Wallo\FilamentCompanies\Features::managesProfilePhotos() && Wallo\FilamentCompanies\Socialite::hasProviderAvatarsFeature()) + wire:click="setAvatarAsProfilePhoto('{{ $account->id }}')"> {{ __('filament-companies::default.buttons.use_avatar_as_profile_photo') }} @endif @if ($this->user->password !== null || $this->accounts->count() > 1) + wire:click="confirmRemove('{{ $account->id }}')"> {{ __('filament-companies::default.buttons.remove') }} @endif @@ -79,7 +79,7 @@ @endif + wire:click="removeConnectedAccount('{{ $this->selectedAccountId }}')"> {{ __('filament-companies::default.buttons.remove_connected_account') }}