mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-04-26 01:09:46 +00:00
fxied bug in shader node
This commit is contained in:
@@ -773,8 +773,8 @@
|
||||
|
||||
NodeScript.prototype.compileCode = function(code) {
|
||||
this._func = null;
|
||||
if (code.length > 100) {
|
||||
console.warn("Script too long, max 100 chars");
|
||||
if (code.length > 256) {
|
||||
console.warn("Script too long, max 256 chars");
|
||||
} else {
|
||||
var code_low = code.toLowerCase();
|
||||
var forbidden_words = [
|
||||
|
||||
Reference in New Issue
Block a user