Update ObjectSelect component to adjust styling for improved layout

- Modified the style of the main container in ObjectSelect to include a relative position, enhancing the layout and positioning of child elements.
This commit is contained in:
Tom Butcher 2026-07-26 21:21:18 +01:00
parent 5c5083c615
commit 580e5dbb34

View File

@ -720,7 +720,7 @@ const ObjectSelect = ({
// --- Main TreeSelect UI --- // --- Main TreeSelect UI ---
return ( return (
<div style={style}> <div style={{ ...style, position: 'relative' }}>
<TreeSelect <TreeSelect
key={treeVersion} key={treeVersion}
treeDataSimpleMode={false} treeDataSimpleMode={false}