Skip to content

Commit

Permalink
Fix Terminal Log node render (#1042)
Browse files Browse the repository at this point in the history
  • Loading branch information
christian-byrne authored Sep 8, 2024
1 parent 0c57379 commit e396d48
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion js/terminal.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,13 @@ app.registerExtension({
name: "Comfy.Manager.Terminal",

registerCustomNodes() {
class TerminalNode {
class TerminalNode extends LiteGraph.LGraphNode {
color = "#222222";
bgcolor = "#000000";
groupcolor = LGraphCanvas.node_colors.black.groupcolor;
constructor() {
super();
this.title = "Terminal Log (Manager)";
this.logs = [];

if (!this.properties) {
Expand Down

0 comments on commit e396d48

Please sign in to comment.