From 29f804df9edcd812625a77781201a14ed80ab95f Mon Sep 17 00:00:00 2001 From: wangdan-fit2cloud Date: Mon, 15 Apr 2024 15:56:30 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8D=E6=96=87=E6=A1=A3?= =?UTF-8?q?=E4=B8=BA=E7=A9=BA=E7=9A=84=E6=83=85=E5=86=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ui/src/views/problem/component/RelateProblemDialog.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/src/views/problem/component/RelateProblemDialog.vue b/ui/src/views/problem/component/RelateProblemDialog.vue index 36fc47d62..0ac461bbb 100644 --- a/ui/src/views/problem/component/RelateProblemDialog.vue +++ b/ui/src/views/problem/component/RelateProblemDialog.vue @@ -172,7 +172,7 @@ function getDocument() { cloneDocumentList.value = res.data documentList.value = res.data currentDocument.value = cloneDocumentList.value?.length > 0 ? cloneDocumentList.value[0].id : '' - getParagraphList(currentDocument.value) + currentDocument.value && getParagraphList(currentDocument.value) }) }