Skip to content

Commit 2b89fc0

Browse files
perf: clear console
1 parent 2c606b9 commit 2b89fc0

File tree

9 files changed

+1
-16
lines changed

9 files changed

+1
-16
lines changed

ui/src/components/ai-chat/component/chat-input-operate/index.vue

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -483,7 +483,6 @@ const handlePaste = (event: ClipboardEvent) => {
483483
}
484484
// 新增拖拽处理
485485
const handleDrop = (event: DragEvent) => {
486-
console.log(event)
487486
if (!props.applicationDetails.file_upload_enable) return
488487
event.preventDefault()
489488
const files = event.dataTransfer?.files

ui/src/views/chat-log/component/EditMarkDialog.vue

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,6 @@ function deleteMark() {
120120
}
121121
122122
function getMark(data: any) {
123-
console.log(data)
124123
chatLogApi
125124
.getMarkChatRecord(id as string, data.chat_id, data.id, loading)
126125
.then((res: any) => {

ui/src/views/chat/index.vue

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,6 @@ const {
2323
query: { mode },
2424
} = route as any
2525
26-
27-
console.log(mode)
2826
const currentTemplate = computed(() => {
2927
let modeName = ''
3028
if (chatUser.application) {

ui/src/views/paragraph/index.vue

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -236,16 +236,12 @@ function changeState(id: string) {
236236
}
237237
238238
function refreshMigrateParagraph(data: any) {
239-
console.log(data)
240239
if (data) {
241240
multipleSelection.value = [data.id]
242241
}
243-
console.log(paragraphDetail.value)
244-
console.log(multipleSelection.value)
245242
paragraphDetail.value = paragraphDetail.value.filter(
246243
(v) => !multipleSelection.value.includes(v.id),
247244
)
248-
console.log(paragraphDetail.value)
249245
multipleSelection.value = []
250246
MsgSuccess(t('views.document.tip.migrationSuccess'))
251247
}

ui/src/views/system/resource-authorization/index.vue

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,6 @@ const permissionObj = ref<any>({
172172
'OR',
173173
),
174174
})
175-
console.log(route.meta.resource || 'APPLICATION')
176175
const settingTags = reactive([
177176
{
178177
label: t('views.knowledge.title'),

ui/src/views/tool/component/ToolListContainer.vue

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -650,7 +650,6 @@ onMounted(() => {
650650
.then((res: any) => {
651651
user_options.value = res.data
652652
})
653-
console.log(apiType.value)
654653
})
655654
</script>
656655

ui/src/workflow/nodes/base-node/component/UserInputFieldTable.vue

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -169,8 +169,6 @@ function refreshFieldList(data: any, index: any) {
169169
function refreshFieldTitle(data: any) {
170170
inputFieldConfig.value = data
171171
UserInputTitleDialogRef.value.close()
172-
173-
// console.log('inputFieldConfig', inputFieldConfig.value)
174172
}
175173
176174
const getDefaultValue = (row: any) => {

ui/src/workflow/nodes/mcp-node/index.vue

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -274,7 +274,6 @@ function changeTool() {
274274
form_data.value.mcp_server = form_data.value.mcp_tools.find(
275275
(item: any) => item.name === form_data.value.mcp_tool,
276276
)?.server
277-
// console.log(form_data.value.mcp_server)
278277
279278
const args_schema = form_data.value.mcp_tools.find(
280279
(item: any) => item.name === form_data.value.mcp_tool,
@@ -297,7 +296,6 @@ function changeTool() {
297296
} else if (params[item2].type === 'object') {
298297
input_type = 'JsonInput'
299298
}
300-
console.log(params[item2])
301299
form_data.value.tool_form_field.push({
302300
field: item2,
303301
label: {
@@ -334,7 +332,6 @@ function changeTool() {
334332
} else if (args_schema.properties[item].type === 'object') {
335333
input_type = 'JsonInput'
336334
}
337-
console.log(args_schema.properties[item])
338335
form_data.value.tool_form_field.push({
339336
field: item,
340337
label: {

ui/src/workflow/nodes/search-knowledge-node/index.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ const validate = () => {
217217
}
218218
219219
onMounted(() => {
220-
console.log(props.nodeModel.properties.node_data)
220+
// console.log(props.nodeModel.properties.node_data)
221221
knowledgeList.value = props.nodeModel.properties.node_data.knowledge_list
222222
set(props.nodeModel, 'validate', validate)
223223
})

0 commit comments

Comments
 (0)