Skip to content

Commit

Permalink
properly disable tabs
Browse files Browse the repository at this point in the history
  • Loading branch information
Ember-ruby committed Jun 29, 2024
1 parent 5347d8e commit 2e93366
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions app/javascript/flavours/blobfox/features/firehose/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -190,17 +190,17 @@ const Firehose = ({ feedType, multiColumn }) => {
</ColumnHeader>

<div className='account__section-headline'>
{(signedIn || timelinePreview || timelinePreview_local ) && (
{(signedIn || timelinePreview_local ) && (
<NavLink exact to='/public/local'>
<FormattedMessage tagName='div' id='firehose.local' defaultMessage='This server' />
</NavLink>
)}
{(signedIn || timelinePreview || timelinePreview_remote) && (
{(signedIn || timelinePreview_remote) && (
<NavLink exact to='/public/remote'>
<FormattedMessage tagName='div' id='firehose.remote' defaultMessage='Other servers' />
</NavLink>
)}
{(signedIn || timelinePreview || timelinePreview_remote) && (
{(signedIn || timelinePreview) && (
<NavLink exact to='/public'>
<FormattedMessage tagName='div' id='firehose.all' defaultMessage='All' />
</NavLink>
Expand Down

0 comments on commit 2e93366

Please sign in to comment.