Remove react-dnd as it was interfering with text selection. Move content

warning mentions preview into area where actual content would be
This commit is contained in:
Eugen Rochko
2017-02-05 04:11:14 +01:00
parent fb6aa7ad5c
commit b5bf807a34
5 changed files with 17 additions and 57 deletions

View File

@ -13,8 +13,6 @@ import { debounce } from 'react-decoration';
import { uploadCompose } from '../../actions/compose';
import { refreshTimeline } from '../../actions/timelines';
import { refreshNotifications } from '../../actions/notifications';
import { DragDropContext } from 'react-dnd';
import HTML5Backend from 'react-dnd-html5-backend';
const UI = React.createClass({
@ -105,4 +103,4 @@ const UI = React.createClass({
});
export default connect()(DragDropContext(HTML5Backend)(UI));
export default connect()(UI);