File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -121,7 +121,6 @@ export const createNewObjectChat = (
121121 const rootNode : ObjectNode = {
122122 id : rootNodeId ,
123123 name : '根对象' ,
124- type : 'object' ,
125124 description : '对象的根节点' ,
126125 children : [ ] ,
127126 expanded : true ,
Original file line number Diff line number Diff line change @@ -306,9 +306,7 @@ ${cellContent}
306306 return childNode
307307 ? {
308308 name : childNode . name ,
309- type : childNode . type ,
310309 description : childNode . description ,
311- value : childNode . value
312310 }
313311 : { name : childName }
314312 } ) ,
@@ -320,9 +318,7 @@ ${cellContent}
320318 return childNode
321319 ? {
322320 name : childNode . name ,
323- type : childNode . type ,
324321 description : childNode . description ,
325- value : childNode . value
326322 }
327323 : { name : childName }
328324 } )
@@ -616,8 +612,7 @@ ${cellContent}
616612 . filter (
617613 ( node ) =>
618614 node . name . toLowerCase ( ) . includes ( query . toLowerCase ( ) ) ||
619- node . description ?. toLowerCase ( ) . includes ( query . toLowerCase ( ) ) ||
620- node . type . toLowerCase ( ) . includes ( query . toLowerCase ( ) )
615+ node . description ?. toLowerCase ( ) . includes ( query . toLowerCase ( ) )
621616 )
622617 . map ( ( node ) => node . id )
623618 : undefined
You can’t perform that action at this time.
0 commit comments