Skip to content

Commit d4f324b

Browse files
authored
Fix v-stream data update on custom component (#107)
1 parent 3291813 commit d4f324b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Diff for: src/directives/stream.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -50,11 +50,11 @@ export default {
5050
data: handle.data
5151
})
5252
})
53-
54-
// store handle on element with a unique key for identifying
55-
// multiple v-stream directives on the same node
56-
;(el._rxHandles || (el._rxHandles = {}))[getKey(binding)] = handle
5753
}
54+
55+
// store handle on element with a unique key for identifying
56+
// multiple v-stream directives on the same node
57+
;(el._rxHandles || (el._rxHandles = {}))[getKey(binding)] = handle
5858
},
5959

6060
update (el, binding) {

0 commit comments

Comments
 (0)