Merge branch 'develop' into kegan/vector-references
Update having merged skindexing PR
This commit is contained in:
commit
95e71a531e
11 changed files with 66 additions and 105 deletions
|
@ -18,6 +18,9 @@ var React = require("react");
|
|||
|
||||
module.exports = React.createClass({
|
||||
displayName: 'VectorCustomServerDialog',
|
||||
statics: {
|
||||
replaces: 'CustomServerDialog',
|
||||
},
|
||||
|
||||
render: function() {
|
||||
return (
|
||||
|
|
|
@ -20,6 +20,9 @@ var React = require('react');
|
|||
|
||||
module.exports = React.createClass({
|
||||
displayName: 'VectorLoginFooter',
|
||||
statics: {
|
||||
replaces: 'LoginFooter',
|
||||
},
|
||||
|
||||
render: function() {
|
||||
return (
|
||||
|
|
|
@ -20,6 +20,9 @@ var React = require('react');
|
|||
|
||||
module.exports = React.createClass({
|
||||
displayName: 'VectorLoginHeader',
|
||||
statics: {
|
||||
replaces: 'LoginHeader',
|
||||
},
|
||||
|
||||
render: function() {
|
||||
return (
|
||||
|
|
|
@ -201,4 +201,6 @@ DragSource('RoomTile', roomTileSource, function(connect, monitor) {
|
|||
// You can ask the monitor about the current drag state:
|
||||
isDragging: monitor.isDragging()
|
||||
};
|
||||
})(RoomTile));
|
||||
})(RoomTile));
|
||||
|
||||
module.exports.replaces = 'RoomTile';
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue