Skip to content
This repository was archived by the owner on Jan 22, 2024. It is now read-only.

Commit 7cdd05c

Browse files
committed
Change parameter order of the interceptWireModelSetValue hook
"laravel/lumen-installer": "^1.1",
1 parent eeb6db5 commit 7cdd05c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ window.livewire.hook('element.initialized', el => {
1919
if (el.__vue__) el.__livewire_ignore = true
2020
})
2121

22-
window.livewire.hook('interceptWireModelSetValue', (el, value) => {
22+
window.livewire.hook('interceptWireModelSetValue', (value, el) => {
2323
// If it's a vue component pass down the value prop.
2424
if (! el.__vue__) return
2525

0 commit comments

Comments
 (0)