Browse Source

Double the threshold for "read more" functionality (#8835)

pull/4/head
Eugen Rochko 5 years ago
committed by GitHub
parent
commit
5d5d1b528e
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      app/javascript/mastodon/components/status_content.js

+ 1
- 1
app/javascript/mastodon/components/status_content.js View File

@ -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 {

Loading…
Cancel
Save