Version 1.0.1 - Fixes Bugs & Improve Playlist Selector

This commit is contained in:
CICD - Pipeline 2023-09-21 20:26:26 +02:00
parent ce135d1b48
commit 8de19ce191
4 changed files with 5 additions and 3 deletions

View File

@ -1,7 +1,7 @@
{
"name": "subsonics-web",
"author": "Raphix",
"version": "1.0.0",
"version": "1.0.1",
"nodemonConfig": {
"ext": "js, html",
"ignore": [

Binary file not shown.

After

Width:  |  Height:  |  Size: 213 KiB

View File

@ -354,7 +354,7 @@ function sendPlayList(key) {
for(var user of resp) {
userToPush.push(`<div id='${resp.indexOf(user)}' style='padding: 1%;' class="INDEX_line set_user_info"><img src="https://cdn.discordapp.com/avatars/${user.id}/${user.avatar}"><div style="display: flex; flex-direction: column; justify-content: center;"><p class="INDEX_gbname">${user.global_name}</p><p class="INDEX_usrname">${user.username}</p></div></div>`)
userToPush.push(`<div id='${resp.indexOf(user)}' style='padding: 1%;' class="INDEX_line set_user_info"><img src="https://cdn.discordapp.com/avatars/${user.id}/${user.avatar}"><div style="display: flex; flex-direction: column; justify-content: start; text-align: start;"><p class="INDEX_gbname">${user.global_name}</p><p class="INDEX_usrname">${user.username}</p></div></div>`)
}
@ -362,6 +362,8 @@ function sendPlayList(key) {
playlist_popup.style.width = '170px'
playlist_popup.style.top = (yMousePos - 30) + "px"
playlist_popup.style.left = (xMousePos - 165) + "px"
playlist_popup.style.overflowY = "auto";
playlist_popup.style.height = "250px"
playlist_popup.classList.remove("invisible")

View File

@ -1093,7 +1093,7 @@ p {
width: 3vw;
height: 3vw;
margin-right: 10%;
margin-right: 0.5vw;
}