Skip to content

Commit

Permalink
Fix tag bar is not showing
Browse files Browse the repository at this point in the history
  • Loading branch information
kmycode committed Sep 12, 2023
1 parent a225d4f commit ffd684b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/javascript/mastodon/components/status.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -623,7 +623,7 @@ class Status extends ImmutablePureComponent {

{(!isCardMediaWithSensitive || !status.get('hidden')) && media}

{expanded && hashtagBar}
{(!status.get('spoiler_text') || expanded) && hashtagBar}

{emojiReactionsBar}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -400,7 +400,7 @@ class DetailedStatus extends ImmutablePureComponent {

{(!isCardMediaWithSensitive || !status.get('hidden')) && media}

{expanded && hashtagBar}
{(!status.get('spoiler_text') || expanded) && hashtagBar}

{emojiReactionsBar}

Expand Down

0 comments on commit ffd684b

Please sign in to comment.