{accountIds.map(id =>
diff --git a/app/assets/javascripts/components/features/hashtag_timeline/index.jsx b/app/assets/javascripts/components/features/hashtag_timeline/index.jsx
index f28e01a003..011b1e54da 100644
--- a/app/assets/javascripts/components/features/hashtag_timeline/index.jsx
+++ b/app/assets/javascripts/components/features/hashtag_timeline/index.jsx
@@ -7,7 +7,7 @@ import {
updateTimeline,
deleteFromTimelines
} from '../../actions/timelines';
-import ColumnBackButton from '../public_timeline/components/column_back_button';
+import ColumnBackButtonSlim from '../../components/column_back_button_slim';
const HashtagTimeline = React.createClass({
@@ -27,10 +27,10 @@ const HashtagTimeline = React.createClass({
received (data) {
switch(data.type) {
- case 'update':
- return dispatch(updateTimeline('tag', JSON.parse(data.message)));
- case 'delete':
- return dispatch(deleteFromTimelines(data.id));
+ case 'update':
+ return dispatch(updateTimeline('tag', JSON.parse(data.message)));
+ case 'delete':
+ return dispatch(deleteFromTimelines(data.id));
}
}
@@ -69,7 +69,7 @@ const HashtagTimeline = React.createClass({
return (
-
+
);
diff --git a/app/assets/javascripts/components/features/public_timeline/index.jsx b/app/assets/javascripts/components/features/public_timeline/index.jsx
index eac85f01bd..28cdc639ad 100644
--- a/app/assets/javascripts/components/features/public_timeline/index.jsx
+++ b/app/assets/javascripts/components/features/public_timeline/index.jsx
@@ -8,7 +8,7 @@ import {
deleteFromTimelines
} from '../../actions/timelines';
import { defineMessages, injectIntl } from 'react-intl';
-import ColumnBackButton from './components/column_back_button';
+import ColumnBackButtonSlim from '../../components/column_back_button_slim';
const messages = defineMessages({
title: { id: 'column.public', defaultMessage: 'Public' }
@@ -33,10 +33,10 @@ const PublicTimeline = React.createClass({
received (data) {
switch(data.type) {
- case 'update':
- return dispatch(updateTimeline('public', JSON.parse(data.message)));
- case 'delete':
- return dispatch(deleteFromTimelines(data.id));
+ case 'update':
+ return dispatch(updateTimeline('public', JSON.parse(data.message)));
+ case 'delete':
+ return dispatch(deleteFromTimelines(data.id));
}
}
@@ -55,7 +55,7 @@ const PublicTimeline = React.createClass({
return (
-
+
);