Fix Zutilo breakage (regression from d9cee322cd)

This commit is contained in:
Dan Stillman 2019-04-10 02:13:04 -04:00
parent 78c3d5808b
commit 1ca6898cb9

View file

@ -1,6 +1,8 @@
/* global Zotero: false */
'use strict';
(function () {
const React = require('react');
const ReactDOM = require('react-dom');
const PropTypes = require('prop-types');
@ -742,3 +744,5 @@ Zotero.TagSelector = class TagSelectorContainer extends React.PureComponent {
onSelection: PropTypes.func.isRequired,
};
};
})();