Skip to content

Commit

Permalink
fix(vtk.js): incorrect patch
Browse files Browse the repository at this point in the history
  • Loading branch information
floryst committed Aug 1, 2024
1 parent dd8ea1f commit 82544ed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion patches/@kitware+vtk.js+30.9.0.patch
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ index d317f28..a8c6c71 100644
numberOfComponents = 1,
component = 0
} = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};
+ const array = dataArray.getRange();
+ const array = dataArray.getData();
model.histogram = null;
model.histogramArray = array;
- model.dataRange = arrayRange(array, component, numberOfComponents);
Expand Down

0 comments on commit 82544ed

Please sign in to comment.