File tree Expand file tree Collapse file tree 8 files changed +9
-9
lines changed Expand file tree Collapse file tree 8 files changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -46,8 +46,8 @@ class CommentForm extends React.Component {
46
46
comment = {
47
47
// This is different because the input is a native HTML element
48
48
// rather than a React element.
49
- author : this . refs . inlineAuthor . getDOMNode ( ) . value ,
50
- text : this . refs . inlineText . getDOMNode ( ) . value ,
49
+ author : this . refs . inlineAuthor . value ,
50
+ text : this . refs . inlineText . value ,
51
51
} ;
52
52
}
53
53
Original file line number Diff line number Diff line change 1
1
import React from 'react' ;
2
2
import { Provider } from 'react-redux' ;
3
3
4
- import createStore from '../stores /commentsStore' ;
4
+ import createStore from '../store /commentsStore' ;
5
5
import NonRouterCommentScreen from '../components/NonRouterCommentScreen' ;
6
6
7
7
const App = props => {
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ import { Provider } from 'react-redux';
3
3
import Router from 'react-router' ;
4
4
import createHistory from 'history/lib/createBrowserHistory' ;
5
5
6
- import createStore from '../stores /commentsStore' ;
6
+ import createStore from '../store /commentsStore' ;
7
7
import routes from '../routes/routes' ;
8
8
9
9
const RouterApp = ( props , location ) => {
Original file line number Diff line number Diff line change 1
1
import React from 'react' ;
2
2
import { Provider } from 'react-redux' ;
3
3
4
- import createStore from '../stores /commentsStore' ;
4
+ import createStore from '../store /commentsStore' ;
5
5
import NonRouterCommentScreen from '../components/NonRouterCommentScreen' ;
6
6
7
7
const App = props => {
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ import React from 'react';
2
2
import { Provider } from 'react-redux' ;
3
3
import { match , RoutingContext } from 'react-router' ;
4
4
5
- import createStore from '../stores /commentsStore' ;
5
+ import createStore from '../store /commentsStore' ;
6
6
import routes from '../routes/routes' ;
7
7
8
8
const RouterApp = ( props , location ) => {
File renamed without changes.
Original file line number Diff line number Diff line change 1
1
import { React , expect , TestUtils } from '../test_helper' ;
2
2
import { List , Map } from 'immutable' ;
3
- import CommentList from '../../app/components/CommentList' ;
4
- import Comment from '../../app/components/Comment' ;
3
+ import CommentList from '../../app/bundles/Comments/ components/CommentList' ;
4
+ import Comment from '../../app/bundles/Comments/ components/Comment' ;
5
5
6
6
const {
7
7
renderIntoDocument,
Original file line number Diff line number Diff line change 1
1
import { React , expect , TestUtils } from '../test_helper' ;
2
- import Comment from '../../app/components/Comment' ;
2
+ import Comment from '../../app/bundles/Comments/ components/Comment' ;
3
3
4
4
const {
5
5
renderIntoDocument,
You can’t perform that action at this time.
0 commit comments