File tree Expand file tree Collapse file tree 3 files changed +3
-2
lines changed
Expand file tree Collapse file tree 3 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ const prefix: any = { _value: '/workspace/' }
1414Object . defineProperty ( prefix , 'value' , {
1515 get : function ( ) {
1616 const { user } = useStore ( )
17- return this . _value + user . getWorkspaceId ( ) + '/model'
17+ return this . _value + user . getWorkspaceId ( )
1818 } ,
1919} )
2020
Original file line number Diff line number Diff line change @@ -160,6 +160,7 @@ function submit() {
160160 documents .push ({
161161 name: item .name ,
162162 paragraphs: item .content ,
163+ source_file_id: item .source_file_id ,
163164 })
164165 })
165166
Original file line number Diff line number Diff line change @@ -231,7 +231,7 @@ function splitDocument() {
231231const initSplitPatternList = () => {
232232 loadSharedApi ({ type: ' document' , systemType: apiType .value })
233233 .listSplitPattern (id , patternLoading )
234- .then ((ok ) => {
234+ .then ((ok : any ) => {
235235 splitPatternList .value = ok .data
236236 })
237237}
You can’t perform that action at this time.
0 commit comments