Browse Source

Only add _meta title to api prompt when dev mode is enabled in UI.

pull/2391/head
comfyanonymous 11 months ago
parent
commit
e478b1794e
  1. 13
      web/scripts/app.js

13
web/scripts/app.js

@ -1781,14 +1781,19 @@ export class ComfyApp {
}
}
output[String(node.id)] = {
let node_data = {
inputs,
class_type: node.comfyClass,
};
if (this.ui.settings.getSettingValue("Comfy.DevMode")) {
// Ignored by the backend.
"_meta": {
node_data["_meta"] = {
title: node.title,
},
};
}
}
output[String(node.id)] = node_data;
}
}

Loading…
Cancel
Save