- {{ $t('views.problem.relateParagraph.selectParagraph') }}
+ {{ $t('components.selectParagraph.title') }}
({{ $t('views.problem.relateParagraph.selectedParagraph') }}:{{
associationCount(currentDocument)
diff --git a/ui/src/workflow/nodes/base-node/component/UserInputTitleDialog.vue b/ui/src/workflow/nodes/base-node/component/UserInputTitleDialog.vue
index b05b0529e..561e75a57 100644
--- a/ui/src/workflow/nodes/base-node/component/UserInputTitleDialog.vue
+++ b/ui/src/workflow/nodes/base-node/component/UserInputTitleDialog.vue
@@ -28,7 +28,7 @@
@@ -43,14 +43,15 @@ const emit = defineEmits(['refresh'])
const fieldFormRef = ref()
const loading = ref(false)
-const isEdit = ref(false)
const form = ref({
- title: t('chat.userInput') ,
+ title: t('chat.userInput')
})
const rules = reactive({
- title: [{ required: true, message: t('dynamicsForm.paramForm.name.requiredMessage'), trigger: 'blur' }],
+ title: [
+ { required: true, message: t('dynamicsForm.paramForm.name.requiredMessage'), trigger: 'blur' }
+ ]
})
const dialogVisible = ref(false)
@@ -58,7 +59,6 @@ const dialogVisible = ref(false)
const open = (row: any) => {
if (row) {
form.value = cloneDeep(row)
- isEdit.value = true
}
dialogVisible.value = true
@@ -66,7 +66,6 @@ const open = (row: any) => {
const close = () => {
dialogVisible.value = false
- isEdit.value = false
}
const submit = async (formEl: FormInstance | undefined) => {