mirror of
https://github.com/TeamPiped/Piped.git
synced 2024-08-14 23:57:27 +00:00
Mobile menu, dont show feeds, subscriptiosn if not logged in, subscr no video in progress
This commit is contained in:
parent
95e533f982
commit
e05d9f8b48
2 changed files with 2 additions and 5 deletions
|
@ -35,13 +35,13 @@
|
|||
<span v-t="'titles.trending'" />
|
||||
</router-link>
|
||||
</li>
|
||||
<li>
|
||||
<li v-if="authenticated">
|
||||
<router-link to="/feed" @click="toggleCollapsed()" class="highlight sidebar-link uk-flex">
|
||||
<font-awesome-icon icon="rss" />
|
||||
<span v-t="'titles.feed'" />
|
||||
</router-link>
|
||||
</li>
|
||||
<li>
|
||||
<li v-if="authenticated">
|
||||
<router-link to="/subscriptions" @click="toggleCollapsed()" class="highlight sidebar-link uk-flex">
|
||||
<font-awesome-icon icon="heart" />
|
||||
<span v-t="'titles.subscriptions'" />
|
||||
|
|
|
@ -1,6 +1,4 @@
|
|||
<template>
|
||||
<h1 class="uk-text-bold uk-text-center">{{ $t("titles.subscriptions") }}</h1>
|
||||
|
||||
<div style="text-align: center">
|
||||
<button
|
||||
v-if="authenticated"
|
||||
|
@ -23,7 +21,6 @@
|
|||
{{ $t("actions.export_to_json") }}
|
||||
</button>
|
||||
</div>
|
||||
<hr />
|
||||
|
||||
<div v-for="subscription in subscriptions" :key="subscription.url" style="text-align: center;">
|
||||
<div class="uk-text-primary" :style="[{ background: backgroundColor }]">
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue