Skip to content

Commit

Permalink
Merge pull request #1 from bfiessinger/fix/original-livewire-listener…
Browse files Browse the repository at this point in the history
…s-ignored

fix original livewire listener array ignored (closes asantibanez#13)
  • Loading branch information
bfiessinger authored Aug 27, 2021
2 parents 443b35c + a0b4b03 commit d1afabb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/LivewireSelect.php
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ public function getListeners()
return collect($this->dependsOn)
->mapWithKeys(function ($key) {
return ["{$key}Updated" => 'updateDependingValue'];
})
})->merge($this->listeners)
->toArray();
}

Expand Down

0 comments on commit d1afabb

Please sign in to comment.