additional nav bar items, lyricsearch.jsx changes/cleanup + bugfix for autocomplete scrolling & change to primereact theme (bootstrap4-dark-blue)

This commit is contained in:
2025-07-15 14:34:44 -04:00
parent b19b8dc22e
commit 289411c8eb
4 changed files with 174 additions and 135 deletions

View File

@ -62,6 +62,7 @@ initialize = () => {
// server issue/not playing
return fail("hard");
}
canPlay = true;
if (currentUUID == data.uuid) {
currentTime = data.elapsed;
currentDuration = data.duration;
@ -72,7 +73,6 @@ initialize = () => {
author_text = data.artist;
$(author).text(author_text);
if (data.genre && data.genre !== "N/A") {
canPlay = true;
$(genre).text(data.genre);
if (! $(genre).is(':visible')) {
$(genre).show();