Fixes: New document menu item not working:

This commit is contained in:
Tom Moor
2017-11-15 23:49:20 -08:00
parent 6750d6cde7
commit c8666570f2

View File

@ -20,17 +20,20 @@ class CollectionMenu extends Component {
collection: Collection,
};
onNewDocument = () => {
onNewDocument = (ev: SyntheticEvent) => {
ev.preventDefault();
const { collection, history } = this.props;
history.push(`${collection.url}/new`);
};
onEdit = () => {
onEdit = (ev: SyntheticEvent) => {
ev.preventDefault();
const { collection } = this.props;
this.props.ui.setActiveModal('collection-edit', { collection });
};
onDelete = () => {
onDelete = (ev: SyntheticEvent) => {
ev.preventDefault();
const { collection } = this.props;
this.props.ui.setActiveModal('collection-delete', { collection });
};