From bd31db71983e8cb756166db907cbe83131e32a66 Mon Sep 17 00:00:00 2001 From: zouap Date: Thu, 30 Dec 2021 14:48:15 +0800 Subject: [PATCH] =?UTF-8?q?=E6=8F=90=E4=BA=A4=E4=BB=A3=E7=A0=81=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: zouap --- public/home/home.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/home/home.js b/public/home/home.js index 98c401a41..030b62183 100644 --- a/public/home/home.js +++ b/public/home/home.js @@ -183,7 +183,7 @@ function getIssueId(record){ var content = record.Content; var index = content.indexOf("|"); if(index != -1){ - Id = record.substring(0,index); + Id = content.substring(0,index); } } }