Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions src/Livewire/FindRuleComponent.php
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,11 @@ public function render(): View
]);
}

public function updatedActiveRectorSetGroup(): void
{
$this->rectorSet = null;
}
Comment on lines +67 to +70
Copy link
Copy Markdown
Member

@samsonasik samsonasik May 5, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

where is this new method called? something magic by Component ?

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is a livewire hook that is automatically called, see last code example in section https://livewire.laravel.com/docs/4.x/lifecycle-hooks#update.


private function isFilterActive(): bool
{
if ($this->query !== null && $this->query !== '') {
Expand Down
Loading