diff --git a/app/javascript/mastodon/components/column.js b/app/javascript/mastodon/components/column.js
index 168f2da9cf..2e1467595f 100644
--- a/app/javascript/mastodon/components/column.js
+++ b/app/javascript/mastodon/components/column.js
@@ -8,6 +8,7 @@ export default class Column extends React.PureComponent {
static propTypes = {
children: PropTypes.node,
extraClasses: PropTypes.string,
+ name: PropTypes.string,
};
scrollTop () {
@@ -41,10 +42,10 @@ export default class Column extends React.PureComponent {
}
render () {
- const { children, extraClasses } = this.props;
+ const { children, extraClasses, name } = this.props;
return (
-
+
{children}
);
diff --git a/app/javascript/mastodon/features/account_timeline/index.js b/app/javascript/mastodon/features/account_timeline/index.js
index fe92216d53..e3b864aeef 100644
--- a/app/javascript/mastodon/features/account_timeline/index.js
+++ b/app/javascript/mastodon/features/account_timeline/index.js
@@ -61,7 +61,7 @@ export default class AccountTimeline extends ImmutablePureComponent {
}
return (
-
+
+
diff --git a/app/javascript/mastodon/features/community_timeline/index.js b/app/javascript/mastodon/features/community_timeline/index.js
index 596a89412d..62b1c8ee95 100644
--- a/app/javascript/mastodon/features/community_timeline/index.js
+++ b/app/javascript/mastodon/features/community_timeline/index.js
@@ -79,7 +79,7 @@ export default class CommunityTimeline extends React.PureComponent {
const pinned = !!columnId;
return (
-
+
+
+
);
}
return (
-
+
diff --git a/app/javascript/mastodon/features/getting_started/index.js b/app/javascript/mastodon/features/getting_started/index.js
index 9b729e0350..68267c54f1 100644
--- a/app/javascript/mastodon/features/getting_started/index.js
+++ b/app/javascript/mastodon/features/getting_started/index.js
@@ -93,7 +93,7 @@ export default class GettingStarted extends ImmutablePureComponent {
]);
return (
-
+
diff --git a/app/javascript/mastodon/features/hashtag_timeline/index.js b/app/javascript/mastodon/features/hashtag_timeline/index.js
index 5fe21ce90e..2077b7cdf4 100644
--- a/app/javascript/mastodon/features/hashtag_timeline/index.js
+++ b/app/javascript/mastodon/features/hashtag_timeline/index.js
@@ -91,7 +91,7 @@ export default class HashtagTimeline extends React.PureComponent {
const pinned = !!columnId;
return (
-
+
+
+
diff --git a/app/javascript/mastodon/features/notifications/index.js b/app/javascript/mastodon/features/notifications/index.js
index 74db05e4a2..0ed940c6d0 100644
--- a/app/javascript/mastodon/features/notifications/index.js
+++ b/app/javascript/mastodon/features/notifications/index.js
@@ -139,6 +139,7 @@ export default class Notifications extends React.PureComponent {
return (
+
{
@@ -47,7 +48,7 @@ export default class Column extends React.PureComponent {
}
render () {
- const { heading, icon, children, active, hideHeadingOnMobile } = this.props;
+ const { heading, icon, children, active, hideHeadingOnMobile, name } = this.props;
const showHeading = heading && (!hideHeadingOnMobile || (hideHeadingOnMobile && !isMobile(window.innerWidth)));
@@ -59,6 +60,7 @@ export default class Column extends React.PureComponent {