From 422fc548155f364003f8ec72a8271923d3878b6e Mon Sep 17 00:00:00 2001 From: CODE <1650192445@qq.com> Date: Thu, 28 Sep 2023 18:59:54 +0800 Subject: [PATCH] =?UTF-8?q?fix=20=E9=A1=B9=E7=9B=AE=E9=9B=86=E7=AD=89?= =?UTF-8?q?=E7=BA=A7=E4=BF=A1=E6=81=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- web/client/src/sections/projectGroup/containers/statistic.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/client/src/sections/projectGroup/containers/statistic.jsx b/web/client/src/sections/projectGroup/containers/statistic.jsx index 72d7aa7..78baa24 100644 --- a/web/client/src/sections/projectGroup/containers/statistic.jsx +++ b/web/client/src/sections/projectGroup/containers/statistic.jsx @@ -65,7 +65,7 @@ const Statistic = (props) => { dataIndex: "name", key: 'name', render: (_, row) => { - return row?.level ? row?.level?.name + ' 级' : '--' + return row?.level && row?.level?.name ? row?.level?.name + ' 级' : '--' } }, { title: '项目个数',