"...git@developer.sourcefind.cn:modelzoo/qwen_lmdeploy.git" did not exist on "35d644628fd31b1df00e2bc5b601b89c5fd335c6"
Commit fb61c75e authored by jwd-dev's avatar jwd-dev
Browse files

default text property incase we need one.

parent 9587ea90
......@@ -12,9 +12,10 @@ app.registerExtension({
constructor() {
if (!this.properties) {
this.properties = {};
this.properties.text="";
}
ComfyWidgets.STRING(this, "", ["", {multiline: true}], app)
ComfyWidgets.STRING(this, "", ["", {default:this.properties.text, multiline: true}], app)
// This node is purely frontend and does not impact the resulting prompt so should not be serialized
this.isVirtualNode = true;
}
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment