From ed06f32a7aaef495c49e10b6ba6818d3fdd904f1 Mon Sep 17 00:00:00 2001 From: Godfrey M Date: Wed, 31 Jan 2024 12:53:56 -0800 Subject: [PATCH] adds # to webhook channel trigger --- app/Http/Livewire/SlackSettingsForm.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/Http/Livewire/SlackSettingsForm.php b/app/Http/Livewire/SlackSettingsForm.php index c971236d52..97f0c5bb73 100644 --- a/app/Http/Livewire/SlackSettingsForm.php +++ b/app/Http/Livewire/SlackSettingsForm.php @@ -80,12 +80,12 @@ class SlackSettingsForm extends Component $this->webhook_botname = $this->setting->webhook_botname; $this->webhook_options = $this->setting->webhook_selected; if($this->webhook_selected == 'microsoft' || $this->webhook_selected == 'google'){ - $this->webhook_channel = 'NA'; + $this->webhook_channel = null; } if($this->setting->webhook_endpoint != null && $this->setting->webhook_channel != null){ - $this->isDisabled= ''; + $this->isDisabled= '#NA'; } } @@ -107,7 +107,7 @@ class SlackSettingsForm extends Component $this->save_button = trans('general.save'); } if($this->webhook_selected == 'microsoft' || $this->webhook_selected == 'google'){ - $this->webhook_channel = 'NA'; + $this->webhook_channel = '#NA'; } }