From f6061262e9e38f4cc22781c88e67373477542331 Mon Sep 17 00:00:00 2001 From: john <johnbarlas39@gmail.com> Date: Thu, 17 Nov 2016 23:20:49 +0200 Subject: [PATCH] fix paths to new modules --- app/components/BookBuilder/BookBuilder.jsx | 2 +- app/components/BookBuilder/BookList.jsx | 3 ++- app/components/BookBuilder/Chapter.jsx | 2 +- app/components/BookBuilder/TeamManager/AddMember.jsx | 2 +- app/components/SimpleEditor/SimpleEditorWrapper.jsx | 2 +- 5 files changed, 6 insertions(+), 5 deletions(-) diff --git a/app/components/BookBuilder/BookBuilder.jsx b/app/components/BookBuilder/BookBuilder.jsx index 6d9748f..b5fab82 100644 --- a/app/components/BookBuilder/BookBuilder.jsx +++ b/app/components/BookBuilder/BookBuilder.jsx @@ -3,7 +3,7 @@ import React from 'react' import { bindActionCreators } from 'redux' import { connect } from 'react-redux' -import * as Actions from 'pubsweet-core/app/actions' +import * as Actions from 'pubsweet-frontend/src/actions' import Division from './Division' import BookBuilderModal from './BookBuilderModal' import styles from './styles/bookBuilder.local.scss' diff --git a/app/components/BookBuilder/BookList.jsx b/app/components/BookBuilder/BookList.jsx index dbba33c..774fbb4 100644 --- a/app/components/BookBuilder/BookList.jsx +++ b/app/components/BookBuilder/BookList.jsx @@ -3,7 +3,8 @@ import { bindActionCreators } from 'redux' import { connect } from 'react-redux' import { Modal } from 'react-bootstrap' import { LinkContainer } from 'react-router-bootstrap' -import * as Actions from 'pubsweet-core/app/actions' +import * as Actions from 'pubsweet-frontend/src/actions' + import styles from './styles/bookList.local.scss' export class BookList extends React.Component { diff --git a/app/components/BookBuilder/Chapter.jsx b/app/components/BookBuilder/Chapter.jsx index 72a9371..6abe04f 100644 --- a/app/components/BookBuilder/Chapter.jsx +++ b/app/components/BookBuilder/Chapter.jsx @@ -8,7 +8,7 @@ import { includes, get, map, flow, slice } from 'lodash' import BookBuilderModal from './BookBuilderModal' import ProgressIndicator from './ProgressIndicator' -import TextInput from 'pubsweet-core/app/components/PostsManager/TextInput' +import TextInput from 'pubsweet-component-posts-manager/TextInput' import styles from './styles/bookBuilder.local.scss' const itemTypes = { diff --git a/app/components/BookBuilder/TeamManager/AddMember.jsx b/app/components/BookBuilder/TeamManager/AddMember.jsx index 170c901..adda011 100644 --- a/app/components/BookBuilder/TeamManager/AddMember.jsx +++ b/app/components/BookBuilder/TeamManager/AddMember.jsx @@ -1,7 +1,7 @@ import React from 'react' import { find, union } from 'lodash' -import TextInput from 'pubsweet-core/app/components/PostsManager/TextInput' +import TextInput from 'pubsweet-component-posts-manager/TextInput' import styles from '../styles/teamManager.local.scss' diff --git a/app/components/SimpleEditor/SimpleEditorWrapper.jsx b/app/components/SimpleEditor/SimpleEditorWrapper.jsx index 48f8938..71caf7e 100644 --- a/app/components/SimpleEditor/SimpleEditorWrapper.jsx +++ b/app/components/SimpleEditor/SimpleEditorWrapper.jsx @@ -3,7 +3,7 @@ import React from 'react' import { connect } from 'react-redux' import { bindActionCreators } from 'redux' -import * as Actions from 'pubsweet-core/app/actions' +import * as Actions from 'pubsweet-frontend/src/actions' // import { fragmentsOfCollection } from 'pubsweet-core/app/helpers/Utils' import SimpleEditor from './SimpleEditor' -- GitLab