Browse Source

Add title to the API workflow json. (#2380)

* Add `title` to the API workflow json.

* API: Move `title` to `_meta` dictionary, imply unused.
pull/2391/head
AYF 11 months ago committed by GitHub
parent
commit
f15dce71fd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      web/scripts/app.js

4
web/scripts/app.js

@ -1784,6 +1784,10 @@ export class ComfyApp {
output[String(node.id)] = {
inputs,
class_type: node.comfyClass,
// Ignored by the backend.
"_meta": {
title: node.title,
},
};
}
}

Loading…
Cancel
Save