Merge branch 'group-manage-fixes' of https://github.com/pythongosssss/ComfyUI

This commit is contained in:
comfyanonymous 2024-01-31 00:25:03 -05:00
commit eeca72488b
2 changed files with 4 additions and 1 deletions

View File

@ -910,6 +910,9 @@ export class GroupNodeHandler {
const self = this;
const onNodeCreated = this.node.onNodeCreated;
this.node.onNodeCreated = function () {
if (!this.widgets) {
return;
}
const config = self.groupData.nodeData.config;
if (config) {
for (const n in config) {

View File

@ -48,7 +48,7 @@
list-style: none;
}
.comfy-group-manage-list-items {
max-height: 70vh;
max-height: calc(100% - 40px);
overflow-y: scroll;
overflow-x: hidden;
}