Skip to content

Commit 5d94c58

Browse files
committed
Parse action connections from attachmentsByRange in values
1 parent 339b0df commit 5d94c58

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/render.ts

+5
Original file line numberDiff line numberDiff line change
@@ -127,6 +127,11 @@ function renderActionConnection(card: HTMLElement, action: ActionData) {
127127
if (paramValue.Value && paramValue.Value.OutputUUID) {
128128
outputUUIDs.push(paramValue.Value.OutputUUID);
129129
}
130+
if (paramValue.Value && paramValue.Value.attachmentsByRange) {
131+
for (const attachment in paramValue.Value.attachmentsByRange) {
132+
outputUUIDs.push(paramValue.Value.attachmentsByRange[attachment].OutputUUID);
133+
}
134+
}
130135
}
131136
if (outputUUIDs.length !== 0) {
132137
// @ts-ignore

0 commit comments

Comments
 (0)