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
8 changes: 4 additions & 4 deletions src/directives/stream.js
Original file line number Diff line number Diff line change
Expand Up @@ -50,11 +50,11 @@ export default {
data: handle.data
})
})

// store handle on element with a unique key for identifying
// multiple v-stream directives on the same node
;(el._rxHandles || (el._rxHandles = {}))[getKey(binding)] = handle
}

// store handle on element with a unique key for identifying
// multiple v-stream directives on the same node
;(el._rxHandles || (el._rxHandles = {}))[getKey(binding)] = handle
},

update (el, binding) {
Expand Down
You are viewing a condensed version of this merge commit. You can view the full changes here.