mirror of
https://framagit.org/tykayn/mastodon.git
synced 2023-08-25 08:33:12 +02:00
Fix CW unfolding not triggering re-layout in public hashtag page
This commit is contained in:
parent
3ce34ce7a2
commit
1a70fca168
@ -17,6 +17,7 @@ export default class StatusContent extends React.PureComponent {
|
||||
mediaIcon: PropTypes.string,
|
||||
parseClick: PropTypes.func,
|
||||
disabled: PropTypes.bool,
|
||||
onUpdate: PropTypes.func,
|
||||
};
|
||||
|
||||
state = {
|
||||
@ -62,6 +63,7 @@ export default class StatusContent extends React.PureComponent {
|
||||
|
||||
componentDidUpdate () {
|
||||
this._updateStatusLinks();
|
||||
if (this.props.onUpdate) this.props.onUpdate();
|
||||
}
|
||||
|
||||
onLinkClick = (e) => {
|
||||
|
@ -79,6 +79,10 @@ export default class DetailedStatus extends ImmutablePureComponent {
|
||||
this._measureHeight(prevState.height !== this.state.height);
|
||||
}
|
||||
|
||||
handleChildUpdate = () => {
|
||||
this._measureHeight();
|
||||
}
|
||||
|
||||
handleModalLink = e => {
|
||||
e.preventDefault();
|
||||
|
||||
@ -218,6 +222,7 @@ export default class DetailedStatus extends ImmutablePureComponent {
|
||||
collapsed={false}
|
||||
onExpandedToggle={onToggleHidden}
|
||||
parseClick={this.parseClick}
|
||||
onUpdate={this.handleChildUpdate}
|
||||
/>
|
||||
|
||||
<div className='detailed-status__meta'>
|
||||
|
Loading…
Reference in New Issue
Block a user