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: '项目个数',