Skip to content

Commit

Permalink
Fix #3088: TreeSelect use panelFooterTemplate (#3089)
Browse files Browse the repository at this point in the history
  • Loading branch information
melloware authored Jul 21, 2022
1 parent 915d326 commit 604c8fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/lib/treeselect/TreeSelect.js
Original file line number Diff line number Diff line change
Expand Up @@ -473,7 +473,7 @@ export const TreeSelect = React.memo(React.forwardRef((props, ref) => {
}

const createFooter = () => {
return ObjectUtils.getJSXElement(props.footer, props);
return ObjectUtils.getJSXElement(props.panelFooterTemplate, props);
}

const selectedNodes = getSelectedNodes();
Expand Down

0 comments on commit 604c8fb

Please sign in to comment.