修复DictionarySelect

master
LiuJiaNan 2025-11-10 16:00:14 +08:00
parent bc0438ea99
commit 2760402b37
1 changed files with 1 additions and 1 deletions

View File

@ -31,7 +31,7 @@ function DictionarySelect(props) {
}, [dictValue]); }, [dictValue]);
return ( return (
<BasicSelect treeData={data} nameKey={nameKey} idKey={idKey} {...restProps} /> <BasicSelect data={data} nameKey={nameKey} idKey={idKey} {...restProps} />
); );
} }