File tree Expand file tree Collapse file tree
src/skins/vector/views/molecules Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ Getting started
14146 . Wait a few seconds for the initial build to finish.
15157 . Open http://127.0.0.1:8080/ in your browser to see your newly built Vector.
1616
17- Wiht ` npm start ` , Any changes you make to the source files will cause a rebuild so
17+ With ` npm start ` , any changes you make to the source files will cause a rebuild so
1818your changes will show up when you refresh.
1919
2020For production use, run ` npm run build ` to build all the necessary files
Original file line number Diff line number Diff line change @@ -33,8 +33,6 @@ module.exports = React.createClass({
3333 var text = TextForEvent . textForEvent ( this . props . mxEvent ) ;
3434 if ( text == null || text . length == 0 ) return null ;
3535
36- var MessageTimestamp = sdk . getComponent ( 'atoms.MessageTimestamp' ) ;
37- var MemberAvatar = sdk . getComponent ( 'atoms.MemberAvatar' ) ;
3836 var timestamp = this . props . last ? < MessageTimestamp ts = { this . props . mxEvent . getTs ( ) } /> : null ;
3937 var avatar = this . props . mxEvent . sender ? < MemberAvatar member = { this . props . mxEvent . sender } /> : null ;
4038 return (
Original file line number Diff line number Diff line change @@ -18,11 +18,9 @@ limitations under the License.
1818
1919var React = require ( 'react' ) ;
2020
21- //var RoomCreateController = require('matrix-react-sdk/lib/controllers/molecules/RoomCreateController')
22-
2321module . exports = React . createClass ( {
2422 displayName : 'RoomCreate' ,
25- // mixins: [RoomCreateController],
23+
2624 render : function ( ) {
2725 return (
2826 < div className = "mx_RoomCreate" >
You can’t perform that action at this time.
0 commit comments