diff --git a/app/Livewire/CategoryEditForm.php b/app/Livewire/CategoryEditForm.php index 98e505c8df..10c8621509 100644 --- a/app/Livewire/CategoryEditForm.php +++ b/app/Livewire/CategoryEditForm.php @@ -61,9 +61,4 @@ class CategoryEditForm extends Component { return (bool)$this->useDefaultEula; } - - public function getSendCheckInEmailDisabledProperty() - { - return $this->eulaText || $this->useDefaultEula; - } } diff --git a/resources/views/livewire/category-edit-form.blade.php b/resources/views/livewire/category-edit-form.blade.php index aee6fe63ed..952e9c3b57 100644 --- a/resources/views/livewire/category-edit-form.blade.php +++ b/resources/views/livewire/category-edit-form.blade.php @@ -90,7 +90,6 @@ value="1" wire:model.live="sendCheckInEmail" aria-label="checkin_email" - @disabled($this->sendCheckInEmailDisabled) /> {{ trans('admin/categories/general.checkin_email') }} @@ -100,9 +99,6 @@ {{ $this->emailMessage }} @endif - @if ($this->sendCheckInEmailDisabled) - - @endif