Skip to content

Commit 83d0ef8

Browse files
authored
Filter events by instance name too
1 parent 874b22b commit 83d0ef8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/devtools/views/events/module.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ const getters = {
4545
return state.events[state.inspectedIndex]
4646
},
4747
filteredEvents: state => {
48-
return state.events.filter(e => e.eventName.indexOf(state.filter) > -1)
48+
return state.events.filter(e => (e.eventName + e.instanceName).indexOf(state.filter) > -1)
4949
}
5050
}
5151

0 commit comments

Comments
 (0)