Skip to content

Commit

Permalink
Remove check for WFInput from linking
Browse files Browse the repository at this point in the history
  • Loading branch information
electrikmilk committed Nov 23, 2023
1 parent 6321cff commit 241f801
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions src/render.ts
Original file line number Diff line number Diff line change
Expand Up @@ -90,9 +90,6 @@ function renderActionConnection(card: HTMLElement, action: ActionData) {
if (lastAction && lastAction.WFWorkflowActionParameters) {
let outputUUIDs = [];
for (const i in action.WFWorkflowActionParameters) {
if (i !== "WFInput") {
continue;
}
// @ts-ignore
const paramValue = action.WFWorkflowActionParameters[i];
if (paramValue.Value && paramValue.Value.OutputUUID) {
Expand Down

0 comments on commit 241f801

Please sign in to comment.