File tree Expand file tree Collapse file tree 2 files changed +1
-5
lines changed
views/application-workflow/component Expand file tree Collapse file tree 2 files changed +1
-5
lines changed Original file line number Diff line number Diff line change @@ -277,7 +277,7 @@ async function getApplicationList() {
277
277
folder_id: folder .currentFolder ?.id || user .getWorkspaceId (),
278
278
})
279
279
applicationList .value = res .data .filter (
280
- (item : any ) => item .resource_type === ' application' && item .id !== props .id ,
280
+ (item : any ) => item .resource_type === ' application' && item .id !== props .id && item . is_publish ,
281
281
)
282
282
}
283
283
Original file line number Diff line number Diff line change @@ -53,10 +53,6 @@ function visibleChange(bool: boolean) {
53
53
options .value = props .global
54
54
? props .nodeModel
55
55
.get_up_node_field_list (false , true )
56
- .map ((v : any ) => {
57
- console .log (v )
58
- return v
59
- })
60
56
.filter (
61
57
(v : any ) => [' global' , ' chat' ].includes (v .value ) && v .children && v .children .length > 0 ,
62
58
)
You can’t perform that action at this time.
0 commit comments