Skip to content

Commit

Permalink
* Show filtering input & sorting element when no. of playlist > 1
Browse files Browse the repository at this point in the history
  • Loading branch information
PikachuEXE committed Aug 29, 2023
1 parent 9ba7262 commit 69406b2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/renderer/views/UserPlaylists/UserPlaylists.vue
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
@click="createNewPlaylist"
/>
<ft-input
v-if="fullData.length > 0"
v-if="fullData.length > 1"
ref="searchBar"
:placeholder="$t('User Playlists.Search bar placeholder')"
:show-clear-text-button="true"
Expand All @@ -29,7 +29,7 @@
@clear="query = ''"
/>
<ft-select
v-if="fullData.length > 0"
v-if="fullData.length > 1"
class="sortSelect"
:value="sortBy"
:select-names="sortBySelectNames"
Expand Down

0 comments on commit 69406b2

Please sign in to comment.