Skip to content

Commit

Permalink
Fix #6468
Browse files Browse the repository at this point in the history
  • Loading branch information
Rekl0w committed Apr 25, 2024
1 parent 713639b commit a706159
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion components/lib/treeselect/TreeSelect.js
Original file line number Diff line number Diff line change
Expand Up @@ -797,7 +797,12 @@ export const TreeSelect = React.memo(
props
};

return ObjectUtils.getJSXElement(props.panelHeaderTemplate, defaultOptions);
return (
<div>
{content}
{ObjectUtils.getJSXElement(props.panelHeaderTemplate, defaultOptions)}
</div>
);
}

return content;
Expand Down

0 comments on commit a706159

Please sign in to comment.