about summary refs log tree commit diff
path: root/app/javascript/mastodon/features/ui/components/column_loading.js
diff options
context:
space:
mode:
authorEugen Rochko <eugen@zeonfederated.com>2019-08-01 12:26:58 +0200
committerGitHub <noreply@github.com>2019-08-01 12:26:58 +0200
commit706a48ee1f2075ffb35ad4ad9cfc2f23fffbffcb (patch)
tree81ce677503b42d558ff48684c75e4615bac46f5a /app/javascript/mastodon/features/ui/components/column_loading.js
parentc4043ba2f22f2a21fb2c6bc2febb6535c14ff878 (diff)
Fix column header scrolling with the page (#11458)
Regression from aa22b38
Diffstat (limited to 'app/javascript/mastodon/features/ui/components/column_loading.js')
-rw-r--r--app/javascript/mastodon/features/ui/components/column_loading.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/javascript/mastodon/features/ui/components/column_loading.js b/app/javascript/mastodon/features/ui/components/column_loading.js
index 9503a7a1a..0cdfd05d8 100644
--- a/app/javascript/mastodon/features/ui/components/column_loading.js
+++ b/app/javascript/mastodon/features/ui/components/column_loading.js
@@ -21,7 +21,7 @@ export default class ColumnLoading extends ImmutablePureComponent {
     let { title, icon } = this.props;
     return (
       <Column>
-        <ColumnHeader icon={icon} title={title} multiColumn={false} focusable={false} />
+        <ColumnHeader icon={icon} title={title} multiColumn={false} focusable={false} placeholder />
         <div className='scrollable' />
       </Column>
     );