Remove dispatch('configurationChanged') from check_status method in Heading.php

This commit is contained in:
Andras Bacsai 2024-04-30 11:20:57 +02:00
parent 4af766162e
commit 080db4d462

View File

@ -39,7 +39,8 @@ public function check_status($showNotification = false)
}
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()