mirror of
https://codeberg.org/Hyperpipe/Hyperpipe
synced 2025-06-28 05:08:00 +02:00
Remove duplicated filter label on search results
This commit is contained in:
parent
98ec04387a
commit
54edfad154
1 changed files with 3 additions and 3 deletions
|
@ -144,7 +144,7 @@ onUpdated(() => {
|
||||||
<div
|
<div
|
||||||
v-if="results.items.songs && results.items.songs.items[0]"
|
v-if="results.items.songs && results.items.songs.items[0]"
|
||||||
class="search-songs">
|
class="search-songs">
|
||||||
<h2>{{ t('title.songs') }}</h2>
|
<h2 v-if="!isSearch">{{ t('title.songs') }}</h2>
|
||||||
<div class="grid">
|
<div class="grid">
|
||||||
<template v-for="song in results.items.songs.items">
|
<template v-for="song in results.items.songs.items">
|
||||||
<SongItem
|
<SongItem
|
||||||
|
@ -187,7 +187,7 @@ onUpdated(() => {
|
||||||
<div
|
<div
|
||||||
v-if="results.items.albums && results.items.albums.items[0]"
|
v-if="results.items.albums && results.items.albums.items[0]"
|
||||||
class="search-albums">
|
class="search-albums">
|
||||||
<h2>{{ t('title.albums') }}</h2>
|
<h2 v-if="!isSearch">{{ t('title.albums') }}</h2>
|
||||||
<div class="grid-3">
|
<div class="grid-3">
|
||||||
<template v-for="album in results.items.albums.items">
|
<template v-for="album in results.items.albums.items">
|
||||||
<AlbumItem
|
<AlbumItem
|
||||||
|
@ -223,7 +223,7 @@ onUpdated(() => {
|
||||||
(results.items.artists && results.items.artists.items[0])
|
(results.items.artists && results.items.artists.items[0])
|
||||||
"
|
"
|
||||||
class="search-artists">
|
class="search-artists">
|
||||||
<h2>
|
<h2 v-if="!isSearch">
|
||||||
{{
|
{{
|
||||||
results.items.artists ? t('title.artists') : t('title.similar_artists')
|
results.items.artists ? t('title.artists') : t('title.similar_artists')
|
||||||
}}
|
}}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue