Fix dopesheet-left prop labels
This commit is contained in:
parent
0875b785ce
commit
766c55f9e7
1 changed files with 2 additions and 1 deletions
|
@ -133,7 +133,8 @@ const PrimitivePropRow: React.FC<{
|
||||||
})
|
})
|
||||||
}, [leaf])
|
}, [leaf])
|
||||||
|
|
||||||
const label = leaf.pathToProp[leaf.pathToProp.length - 1]
|
const label =
|
||||||
|
leaf.propConf.label ?? leaf.pathToProp[leaf.pathToProp.length - 1]
|
||||||
const isSelectable = true
|
const isSelectable = true
|
||||||
|
|
||||||
const headRef = useRef<HTMLDivElement | null>(null)
|
const headRef = useRef<HTMLDivElement | null>(null)
|
||||||
|
|
Loading…
Reference in a new issue