Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
pleroma-fe
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Pleroma
pleroma-fe
Commits
9d8dbd83
Commit
9d8dbd83
authored
5 years ago
by
feld
Browse files
Options
Downloads
Patches
Plain Diff
Fix missing TWKN when logged in, but server is set to private mode.
parent
ad8eb883
No related branches found
Branches containing commit
No related tags found
Tags containing commit
2 merge requests
!1074
Update master with 2.0.0
,
!1047
Fix missing TWKN when logged in, but server is set to private mode.
Pipeline
#22092
passed
5 years ago
Stage: lint
Stage: build
Stage: test
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/components/nav_panel/nav_panel.vue
+1
-1
1 addition, 1 deletion
src/components/nav_panel/nav_panel.vue
src/components/side_drawer/side_drawer.vue
+1
-1
1 addition, 1 deletion
src/components/side_drawer/side_drawer.vue
with
2 additions
and
2 deletions
src/components/nav_panel/nav_panel.vue
+
1
−
1
View file @
9d8dbd83
...
...
@@ -33,7 +33,7 @@
<i
class=
"button-icon icon-users"
/>
{{
$t
(
"
nav.public_tl
"
)
}}
</router-link>
</li>
<li
v-if=
"federating && !privateMode"
>
<li
v-if=
"federating &&
(currentUser ||
!privateMode
)
"
>
<router-link
:to=
"
{ name: 'public-external-timeline' }">
<i
class=
"button-icon icon-globe"
/>
{{
$t
(
"
nav.twkn
"
)
}}
</router-link>
...
...
This diff is collapsed.
Click to expand it.
src/components/side_drawer/side_drawer.vue
+
1
−
1
View file @
9d8dbd83
...
...
@@ -88,7 +88,7 @@
</router-link>
</li>
<li
v-if=
"federating && !privateMode"
v-if=
"federating &&
(currentUser ||
!privateMode
)
"
@
click=
"toggleDrawer"
>
<router-link
to=
"/main/all"
>
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment