From 080db4d462c676ff01496e5999437597bbb5796b Mon Sep 17 00:00:00 2001 From: Andras Bacsai Date: Tue, 30 Apr 2024 11:20:57 +0200 Subject: [PATCH] Remove dispatch('configurationChanged') from check_status method in Heading.php --- app/Livewire/Project/Application/Heading.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/Livewire/Project/Application/Heading.php b/app/Livewire/Project/Application/Heading.php index 0717a51f0..0b1e6edf5 100644 --- a/app/Livewire/Project/Application/Heading.php +++ b/app/Livewire/Project/Application/Heading.php @@ -39,7 +39,8 @@ class Heading extends Component } if ($showNotification) $this->dispatch('success', "Success", "Application status updated."); - $this->dispatch('configurationChanged'); + // Removed because it caused flickering + // $this->dispatch('configurationChanged'); } public function force_deploy_without_cache()