fix: prevent scheduled task input fields from losing focus
Remove the ServiceChecked event listener that triggered a full component re-render every 10 seconds via the heading's wire:poll. The heading component already handles status display independently, so the task edit form does not need to re-render on status checks. Fixes #8647
This commit is contained in:
parent
78aea9a7ec
commit
d5a46f577d
1 changed files with 0 additions and 9 deletions
|
|
@ -52,15 +52,6 @@ class Show extends Component
|
|||
#[Locked]
|
||||
public string $task_uuid;
|
||||
|
||||
public function getListeners()
|
||||
{
|
||||
$teamId = auth()->user()->currentTeam()->id;
|
||||
|
||||
return [
|
||||
"echo-private:team.{$teamId},ServiceChecked" => '$refresh',
|
||||
];
|
||||
}
|
||||
|
||||
public function mount(string $task_uuid, string $project_uuid, string $environment_uuid, ?string $application_uuid = null, ?string $service_uuid = null)
|
||||
{
|
||||
try {
|
||||
|
|
|
|||
Loading…
Reference in a new issue