mirror of
https://git.bsd.gay/fef/nyastodon.git
synced 2024-12-26 19:33:41 +01:00
Adjust file status component in glitch flavour to match upstream
This commit is contained in:
parent
816aac960f
commit
95751c93c2
1 changed files with 6 additions and 4 deletions
|
@ -581,10 +581,7 @@ class Status extends ImmutablePureComponent {
|
||||||
// backgrounds for collapsed statuses are enabled.
|
// backgrounds for collapsed statuses are enabled.
|
||||||
|
|
||||||
attachments = status.get('media_attachments');
|
attachments = status.get('media_attachments');
|
||||||
if (status.get('poll')) {
|
|
||||||
media.push(<PollContainer pollId={status.get('poll')} />);
|
|
||||||
mediaIcons.push('tasks');
|
|
||||||
}
|
|
||||||
if (usingPiP) {
|
if (usingPiP) {
|
||||||
media.push(<PictureInPicturePlaceholder width={this.props.cachedMediaWidth} />);
|
media.push(<PictureInPicturePlaceholder width={this.props.cachedMediaWidth} />);
|
||||||
mediaIcons.push('video-camera');
|
mediaIcons.push('video-camera');
|
||||||
|
@ -684,6 +681,11 @@ class Status extends ImmutablePureComponent {
|
||||||
mediaIcons.push('link');
|
mediaIcons.push('link');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (status.get('poll')) {
|
||||||
|
media.push(<PollContainer pollId={status.get('poll')} />);
|
||||||
|
mediaIcons.push('tasks');
|
||||||
|
}
|
||||||
|
|
||||||
// Here we prepare extra data-* attributes for CSS selectors.
|
// Here we prepare extra data-* attributes for CSS selectors.
|
||||||
// Users can use those for theming, hiding avatars etc via UserStyle
|
// Users can use those for theming, hiding avatars etc via UserStyle
|
||||||
const selectorAttribs = {
|
const selectorAttribs = {
|
||||||
|
|
Loading…
Reference in a new issue