Skip to content

Commit 1f46935

Browse files
bruyeretfinetjul
authored andcommitted
refactor(SphereMapper): remove a .get() in example
1 parent a74044b commit 1f46935

File tree

1 file changed

+1
-1
lines changed
  • Sources/Rendering/Core/SphereMapper/example

1 file changed

+1
-1
lines changed

Sources/Rendering/Core/SphereMapper/example/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ function pickOnMouseEvent(event) {
126126
const selections = result?.generateSelection(x, y, x, y);
127127
if (selections && selections.length >= 1) {
128128
const selection = selections[0];
129-
const props = selection.get().properties;
129+
const props = selection.getProperties();
130130
attributeIdDiv.textContent = props.attributeID;
131131
} else {
132132
attributeIdDiv.textContent = '';

0 commit comments

Comments
 (0)