fix album search

- convert strings to lowercase before search
This commit is contained in:
geoffrey45
2022-03-08 09:25:07 +03:00
parent 25f79d8a20
commit c3059d502c
7 changed files with 30 additions and 14 deletions
+1 -1
View File
@@ -124,7 +124,7 @@ export default {
left: $small;
height: 1.5rem;
width: 1.5rem;
background-image: url(../../assets/icons/folder.svg);
background-image: url(../../assets/icons/folder.fill.svg);
margin-right: $small;
}
+4 -3
View File
@@ -1,11 +1,11 @@
<template>
<div class="topnav rounded">
<div class="left">
<div class="btn">
<!-- <div class="btn">
<PlayBtn />
</div>
</div> -->
<div class="info">
<div class="title">The Queen of Soul</div>
<div class="title">Album</div>
</div>
</div>
<div class="center"></div>
@@ -15,6 +15,7 @@
<script setup>
import PlayBtn from '../shared/PlayBtn.vue';
</script>
<style lang="scss">
+1 -1
View File
@@ -15,7 +15,7 @@
></div>
<div class="play shadow-lg image"></div>
</div>
<div class="title ellip">{{ album.name }}</div>
<div class="title ellip">{{ album.album }}</div>
<div class="artistsx ellipsis">{{ album.artist }}</div>
</router-link>
</template>