fix: don't scroll the tree item to top when clicking it

This commit is contained in:
MrWindlike 2022-05-12 14:17:29 +08:00
parent 67fb8a0065
commit c6c5fae8b2

View File

@ -52,8 +52,8 @@ export const StructureTree: React.FC<Props> = props => {
wrapperRef.current
?.querySelector(`#tree-item-${selectedComponentId}`)
?.scrollIntoView({
behavior:'smooth',
block:'center'
block: 'nearest',
inline: 'nearest'
});
}, [selectedComponentId]);