Some missed '/' / '.' replacemement
This commit is contained in:
parent
588dbf5693
commit
c3f32b74e4
1 changed files with 3 additions and 3 deletions
|
@ -42,7 +42,7 @@ module.exports = React.createClass({
|
||||||
},
|
},
|
||||||
|
|
||||||
changePassword: function() {
|
changePassword: function() {
|
||||||
var ChangePassword = sdk.getComponent('molecules/ChangePassword');
|
var ChangePassword = sdk.getComponent('molecules.ChangePassword');
|
||||||
Modal.createDialog(ChangePassword);
|
Modal.createDialog(ChangePassword);
|
||||||
},
|
},
|
||||||
|
|
||||||
|
@ -60,8 +60,8 @@ module.exports = React.createClass({
|
||||||
case this.Phases.Loading:
|
case this.Phases.Loading:
|
||||||
return <Loader />
|
return <Loader />
|
||||||
case this.Phases.Display:
|
case this.Phases.Display:
|
||||||
var EditableText = sdk.getComponent('atoms/EditableText');
|
var EditableText = sdk.getComponent('atoms.EditableText');
|
||||||
var EnableNotificationsButton = sdk.getComponent('atoms/EnableNotificationsButton');
|
var EnableNotificationsButton = sdk.getComponent('atoms.EnableNotificationsButton');
|
||||||
return (
|
return (
|
||||||
<div className="mx_UserSettings">
|
<div className="mx_UserSettings">
|
||||||
<div className="mx_UserSettings_User">
|
<div className="mx_UserSettings_User">
|
||||||
|
|
Loading…
Reference in a new issue