Notice: Function _load_textdomain_just_in_time was called incorrectly. Translation loading for the ionos-performance domain was triggered too early. This is usually an indicator for some code in the plugin or theme running too early. Translations should be loaded at the init action or later. Please see Debugging in WordPress for more information. (This message was added in version 6.7.0.) in /homepages/42/d991224120/htdocs/clickandbuilds/CogniBuild/wp-includes/functions.php on line 6131
ComfyUI – Slider Nodes missing Slider – Cognibuild

ComfyUI – Slider Nodes missing Slider


Smirnov75

on Jan 20 · edited by Smirnov75

Owner

In this case, the issue is definitely that mixlab overrides the onDrawForeground method of other nodes. I consider this unacceptable. Moreover, mixlab only uses this method if it is defined in the prototype. This results in display issues for other nodes that rely on this method.
To fix this problem, the line in ui_mixlab.js
Go to your ComfyUI -> customNodes->comfyui-mixlab->web->javascript->ui_mixlab.js

From inside there do a searf rom const orig = node


should be replaced with:
const orig = node.onDrawForeground ?? node.__proto__.onDrawForeground;
You can fix this yourself