File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed
src/sentry/static/sentry/app/views/stream Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -104,14 +104,17 @@ var StreamTagFilter = React.createClass({
104
104
} ,
105
105
106
106
render ( ) {
107
+ // NOTE: need to specify empty onChange handler on <select> - even though this
108
+ // will get overridden by select2 - because React will complain with
109
+ // a warning
107
110
let tag = this . props . tag ;
108
111
return (
109
112
< div className = "stream-tag-filter" >
110
113
< h6 className = "nav-header" > { tag . name } </ h6 >
111
114
112
115
{ this . props . tag . predefined ?
113
116
114
- < select ref = "select" value = { this . props . value } >
117
+ < select ref = "select" value = { this . props . value } onChange = { function ( ) { } } >
115
118
< option key = "empty" > </ option >
116
119
{ this . props . tag . values . map ( ( val ) => {
117
120
return (
You can’t perform that action at this time.
0 commit comments