Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions src/renderer/components/playlist-info/playlist-info.vue
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
</h2>
<p>
{{ videoCount }} {{ $t("Playlist.Videos") }}
<span v-if="!hideViews && infoSource !== 'user'">
<span v-if="!hideViews && !isUserPlaylist">
- {{ viewCount }} {{ $t("Playlist.Views") }}
</span>
<span>- </span>
Expand Down Expand Up @@ -79,7 +79,7 @@
class="channelShareWrapper"
>
<router-link
v-if="infoSource !== 'user' && channelId"
v-if="!isUserPlaylist && channelId"
class="playlistChannel"
:to="`/channel/${channelId}`"
>
Expand Down Expand Up @@ -122,7 +122,7 @@
/>

<ft-icon-button
v-if="!editMode && infoSource === 'user'"
v-if="!editMode && isUserPlaylist"
:title="$t('User Playlists.Edit Playlist Info')"
:icon="['fas', 'edit']"
theme="secondary"
Expand All @@ -136,21 +136,21 @@
@click="toggleCopyVideosPrompt"
/>
<ft-icon-button
v-if="!editMode && !markedAsQuickBookmarkTarget"
v-if="!editMode && isUserPlaylist && !markedAsQuickBookmarkTarget"
:title="$t('User Playlists.Enable Quick Bookmark With This Playlist')"
:icon="['fas', 'link']"
theme="secondary"
@click="enableQuickBookmarkForThisPlaylist"
/>
<ft-icon-button
v-if="!editMode && markedAsQuickBookmarkTarget"
v-if="!editMode && isUserPlaylist && markedAsQuickBookmarkTarget"
:title="$t('User Playlists.Disable Quick Bookmark')"
:icon="['fas', 'link-slash']"
theme="secondary"
@click="disableQuickBookmark"
/>
<ft-icon-button
v-if="!editMode && infoSource === 'user' && videoCount > 0"
v-if="!editMode && isUserPlaylist && videoCount > 0"
:title="$t('User Playlists.Remove Watched Videos')"
:icon="['fas', 'eye-slash']"
theme="primary"
Expand Down