diff --git a/web/js/help_popup.js b/web/js/help_popup.js index be051f7..8bccc62 100644 --- a/web/js/help_popup.js +++ b/web/js/help_popup.js @@ -52,7 +52,10 @@ app.registerExtension({ if (nodeData?.category?.startsWith("KJNodes")) { addDocumentation(nodeData, nodeType); } - if (nodeData?.category?.includes("SUPIR")) { + if (nodeData?.category?.startsWith("SUPIR")) { + addDocumentation(nodeData, nodeType); + } + if (nodeData?.category?.startsWith("VoiceCraft")) { addDocumentation(nodeData, nodeType); } } catch (error) { @@ -104,6 +107,9 @@ const create_documentation_stylesheet = () => { /* Scrollbar styling for Firefox */ scrollbar-width: thin; scrollbar-color: var(--fg-color) var(--bg-color); + a { + color: yellow; + } a:visited { color: orange; }