Skip to content

Commit

Permalink
fix(sidebar-config): append correct id (#2488)
Browse files Browse the repository at this point in the history
  • Loading branch information
kyrie25 committed Jul 26, 2023
1 parent acb25ea commit 2b23613
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jsHelper/sidebarConfig.js
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,7 @@ color: var(--spice-button-disabled);
const observer = new MutationObserver(mutations => {
for (const mutation of mutations) {
if (mutation.type === "childList" && mutation.addedNodes.length) {
mutation.addedNodes[0].id = "spicetify-hidden-list";
mutation.addedNodes[0].id = "spicetify-playlist-list";
}
}
});
Expand Down

0 comments on commit 2b23613

Please sign in to comment.