mirror of
https://github.com/xibyte/jsketcher
synced 2026-01-01 13:23:32 +01:00
fix planes in the object explorer
This commit is contained in:
parent
8ecec9c109
commit
f5cb8bfcec
1 changed files with 2 additions and 2 deletions
|
|
@ -38,9 +38,9 @@ function FaceSection({face}) {
|
|||
<Section label={face.sketchObjects.length ? 'sketch' : <span className={ls.hint}>{'<no sketch assigned>'}</span>}>
|
||||
{face.sketchObjects.map(o => <div key={o.id}>{o.id + ':' + o.sketchPrimitive.constructor.name}</div>)}
|
||||
</Section>
|
||||
<Section label='edges' defaultOpen={false}>
|
||||
{face.edges && <Section label='edges' defaultOpen={false}>
|
||||
{face.edges.map(e => <EdgeSection edge={e} key={e.id}/>)}
|
||||
</Section>
|
||||
</Section>}
|
||||
</ModelSection>;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue