Skip to content

Commit

Permalink
Merge pull request #6471 from Rekl0w/Fix#6468
Browse files Browse the repository at this point in the history
Fix #6468: TreeSelect header fix
  • Loading branch information
nitrogenous committed Apr 25, 2024
2 parents 77ba792 + a706159 commit 4d38b6f
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 4d38b6f

Please sign in to comment.