diff options
| author | Mark Felder <feld@FreeBSD.org> | 2019-12-12 13:51:50 -0600 |
|---|---|---|
| committer | Mark Felder <feld@FreeBSD.org> | 2019-12-12 13:51:50 -0600 |
| commit | 2514dc183f604686d1648c0a69f6eba00d943ce7 (patch) | |
| tree | 423674a9ef1668e31da039b059c5cc48be6fb574 /src/components/nav_panel/nav_panel.vue | |
| parent | 7ddd5af0812a73d6a898331e38603067e0cd219b (diff) | |
Logic should be to hide TWKN if not federating OR if instance is not public
Private instances should not show any timelines
Diffstat (limited to 'src/components/nav_panel/nav_panel.vue')
| -rw-r--r-- | src/components/nav_panel/nav_panel.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/nav_panel/nav_panel.vue b/src/components/nav_panel/nav_panel.vue index 97c36711..034259d9 100644 --- a/src/components/nav_panel/nav_panel.vue +++ b/src/components/nav_panel/nav_panel.vue @@ -33,7 +33,7 @@ <i class="button-icon icon-users" /> {{ $t("nav.public_tl") }} </router-link> </li> - <li v-if="(currentUser || !privateMode) && federating"> + <li v-if="federating && !privateMode"> <router-link :to="{ name: 'public-external-timeline' }"> <i class="button-icon icon-globe" /> {{ $t("nav.twkn") }} </router-link> |
