about summary refs log tree commit diff
path: root/app
diff options
context:
space:
mode:
authorEugen Rochko <eugen@zeonfederated.com>2018-10-01 03:38:10 +0200
committerGitHub <noreply@github.com>2018-10-01 03:38:10 +0200
commit5d5d1b528eda560191b2813714c9e461fda3c9d8 (patch)
treedd30ab5ed93e1083a07802f832d096af3e1a1ad9 /app
parent65f04e6046533ecee9412be2d53e3497899fdb57 (diff)
Double the threshold for "read more" functionality (#8835)
Diffstat (limited to 'app')
-rw-r--r--app/javascript/mastodon/components/status_content.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/javascript/mastodon/components/status_content.js b/app/javascript/mastodon/components/status_content.js
index f221474f3..eda7d6ac3 100644
--- a/app/javascript/mastodon/components/status_content.js
+++ b/app/javascript/mastodon/components/status_content.js
@@ -6,7 +6,7 @@ import { FormattedMessage } from 'react-intl';
 import Permalink from './permalink';
 import classnames from 'classnames';
 
-const MAX_HEIGHT = 322; // 20px * 16 (+ 2px padding at the top)
+const MAX_HEIGHT = 642; // 20px * 32 (+ 2px padding at the top)
 
 export default class StatusContent extends React.PureComponent {