Hide filter on history and playlist page when page is empty (#2177)
* Hide filter on history and playlist page when page is empty * Fix linter warnings * Fully fix linter warnings
This commit is contained in:
parent
70c0544fe5
commit
b3ee24ecf3
|
@ -10,6 +10,7 @@
|
|||
>
|
||||
<h3>{{ $t("History.History") }}</h3>
|
||||
<ft-input
|
||||
v-show="activeData.length > 0"
|
||||
ref="searchBar"
|
||||
:placeholder="$t('History.Search bar placeholder')"
|
||||
:show-clear-text-button="true"
|
||||
|
|
|
@ -17,6 +17,7 @@
|
|||
/>
|
||||
</h3>
|
||||
<ft-input
|
||||
v-show="activeData.length > 0"
|
||||
ref="searchBar"
|
||||
:placeholder="$t('User Playlists.Search bar placeholder')"
|
||||
:show-clear-text-button="true"
|
||||
|
|
Loading…
Reference in New Issue