Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
matrix-react-sdk
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Analyze
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
GitHub Mirror
Matrix.org
matrix-react-sdk
Commits
636be0c0
Commit
636be0c0
authored
9 years ago
by
Kegan Dougal
Browse files
Options
Downloads
Patches
Plain Diff
Update getComponent paths
parent
726c8936
Branches
kegan/vector-components
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/components/structures/MatrixChat.js
+3
-3
3 additions, 3 deletions
src/components/structures/MatrixChat.js
src/components/views/rooms/RoomList.js
+1
-1
1 addition, 1 deletion
src/components/views/rooms/RoomList.js
with
4 additions
and
4 deletions
src/components/structures/MatrixChat.js
+
3
−
3
View file @
636be0c0
...
...
@@ -565,12 +565,12 @@ module.exports = React.createClass({
},
render
:
function
()
{
var
LeftPanel
=
sdk
.
getComponent
(
'
organism
s.LeftPanel
'
);
var
LeftPanel
=
sdk
.
getComponent
(
'
structure
s.LeftPanel
'
);
var
RoomView
=
sdk
.
getComponent
(
'
structures.RoomView
'
);
var
RightPanel
=
sdk
.
getComponent
(
'
organism
s.RightPanel
'
);
var
RightPanel
=
sdk
.
getComponent
(
'
structure
s.RightPanel
'
);
var
UserSettings
=
sdk
.
getComponent
(
'
structures.UserSettings
'
);
var
CreateRoom
=
sdk
.
getComponent
(
'
structures.CreateRoom
'
);
var
RoomDirectory
=
sdk
.
getComponent
(
'
organism
s.RoomDirectory
'
);
var
RoomDirectory
=
sdk
.
getComponent
(
'
structure
s.RoomDirectory
'
);
var
MatrixToolbar
=
sdk
.
getComponent
(
'
globals.MatrixToolbar
'
);
// needs to be before normal PageTypes as you are logged in technically
...
...
This diff is collapsed.
Click to expand it.
src/components/views/rooms/RoomList.js
+
1
−
1
View file @
636be0c0
...
...
@@ -226,7 +226,7 @@ module.exports = React.createClass({
<
img
className
=
"
mx_RoomList_expandButton
"
onClick
=
{
this
.
onShowClick
}
src
=
"
img/menu.png
"
width
=
"
20
"
alt
=
"
>
"
/>
:
null
;
var
RoomSubList
=
sdk
.
getComponent
(
'
organism
s.RoomSubList
'
);
var
RoomSubList
=
sdk
.
getComponent
(
'
structure
s.RoomSubList
'
);
var
self
=
this
;
return
(
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment