fix(fields): actually add the methods onto the nodes

This commit is contained in:
Nova
2024-06-28 20:07:28 -04:00
parent 0b9f79158c
commit 1324c26c74

View File

@@ -145,6 +145,8 @@ impl Field {
shape: Mutex::new(shape),
};
node.add_aspect(field);
<Field as FieldRefAspect>::add_node_members(node);
<Field as FieldAspect>::add_node_members(node);
Ok(())
}
}