Skip to content

Commit

Permalink
* Make search button only appear with video count > 0
Browse files Browse the repository at this point in the history
  • Loading branch information
PikachuEXE committed Feb 26, 2024
1 parent 027a310 commit 70793ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/renderer/components/playlist-info/playlist-info.vue
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@

<div class="playlistOptions">
<ft-icon-button
v-if="isUserPlaylist && !editMode"
v-if="isUserPlaylist && videoCount > 0 && !editMode"
ref="enableSearchModeButton"
:title="$t('User Playlists.SinglePlaylistView.Search for Videos')"
:icon="['fas', 'search']"
Expand Down

0 comments on commit 70793ca

Please sign in to comment.