diff --git a/src/litegraph.js b/src/litegraph.js index f13b17ef3..275adec12 100755 --- a/src/litegraph.js +++ b/src/litegraph.js @@ -6284,7 +6284,7 @@ LGraphCanvas.onShowTitleEditor = function( value, options, e, menu, node ) var dialog = document.createElement("div"); dialog.className = "graphdialog"; - dialog.innerHTML = "Title"; + dialog.innerHTML = "Title"; var input = dialog.querySelector("input"); if(input) { @@ -6533,10 +6533,10 @@ LGraphCanvas.prototype.showEditPropertyValue = function( node, property, options var input_html = ""; if(type == "string" || type == "number" || type == "array") - input_html = ""; + input_html = ""; else if(type == "enum" && info.values) { - input_html = ""; for(var i in info.values) { var v = info.values.constructor === Array ? info.values[i] : i; @@ -6546,7 +6546,7 @@ LGraphCanvas.prototype.showEditPropertyValue = function( node, property, options } else if(type == "boolean") { - input_html = ""; + input_html = ""; } else {