diff --git a/frontend/src/container/AllError/index.tsx b/frontend/src/container/AllError/index.tsx index 3f49fdb5a4..51f47c1104 100644 --- a/frontend/src/container/AllError/index.tsx +++ b/frontend/src/container/AllError/index.tsx @@ -1,4 +1,4 @@ -import { notification, Table, Typography } from 'antd'; +import { notification, Table, Tooltip, Typography } from 'antd'; import { ColumnsType } from 'antd/lib/table'; import getAll from 'api/errors/getAll'; import ROUTES from 'constants/routes'; @@ -47,11 +47,13 @@ function AllErrors(): JSX.Element { dataIndex: 'exceptionType', key: 'exceptionType', render: (value, record): JSX.Element => ( - - {value} - + value}> + + {value} + + ), sorter: (a, b): number => a.exceptionType.charCodeAt(0) - b.exceptionType.charCodeAt(0), @@ -61,13 +63,15 @@ function AllErrors(): JSX.Element { dataIndex: 'exceptionMessage', key: 'exceptionMessage', render: (value): JSX.Element => ( - - {value} - + value}> + + {value} + + ), }, {