Skip to content

Commit

Permalink
change wording
Browse files Browse the repository at this point in the history
  • Loading branch information
6174 committed Mar 26, 2024
1 parent d124042 commit c01c502
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/common/workflow-editor/node-rendering.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ export function getNodeRenderInfo(node: SDNode, widget: Widget): WorkflowNodeRen

const title = node.title || widget?.name;
return {
title: `${title}${bypass ? " (Bypass)" : ""}`,
title: `${title}${bypass ? " (Disabled)" : ""}`,
widget,
inputs,
params,
Expand Down Expand Up @@ -168,7 +168,7 @@ export function getPrimitiveNodeRenderingInfo(node: SDNode, widget: Widget): Wor


return {
title: `${title}${bypass ? " (Bypass)" : ""}`,
title: `${title}${bypass ? " (Disabled)" : ""}`,
widget,
inputs: [],
outputs: [{
Expand Down

0 comments on commit c01c502

Please sign in to comment.