Skip to content

Commit

Permalink
Merge pull request #446 from PrefectHQ/fix/artifact-cluster-emit-meas…
Browse files Browse the repository at this point in the history
…urements

Bugfix: artifact cluster measurements on emit
  • Loading branch information
brandonreid authored Mar 11, 2024
2 parents 50cf528 + c37cef9 commit 1f80fda
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/factories/flowRunArtifact.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,8 @@ export async function flowRunArtifactFactory<T extends ArtifactFactoryOptions>(o
const position = {
x: globalPosition.x,
y: globalPosition.y,
width: element.width * viewport.scale.x,
height: element.height * viewport.scale.y,
width: element.width,
height: element.height,
}

const selectSettings: ArtifactSelection | ArtifactsSelection = itemIsClusterFactory(factory)
Expand Down

0 comments on commit 1f80fda

Please sign in to comment.