Small fix

This commit is contained in:
Rachel Thornton 2016-05-10 08:18:47 -04:00
parent 9c6475aed5
commit 577ed2c746

View file

@ -73,7 +73,7 @@ var Explore = injectIntl(React.createClass({
},
changeItemType: function () {
var newType;
for each (var t in this.props.acceptableTypes) {
for (var t in this.props.acceptableTypes) {
if (this.props.itemType != t) {
newType = t;
break;