Commit 4ea50732 by zhaochengxiang

bug fix

parent d87f3cff
......@@ -238,7 +238,7 @@ const Basic = React.forwardRef(function ({ type, items }, ref) {
callback: (data) => {
setLoading(false)
//只显示已上线的模型
setData((data??[]).filter(item => item.state?.id === '4'))
setData((data??[]).filter(item => item.state?.id === '4' && !item.inherited))
},
error: () => {
setLoading(false)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment