diff --git a/src/Pages/GroupTasks/GroupTasksTableList.js b/src/Pages/GroupTasks/GroupTasksTableList.js index 56fdbbd..2817b8c 100644 --- a/src/Pages/GroupTasks/GroupTasksTableList.js +++ b/src/Pages/GroupTasks/GroupTasksTableList.js @@ -1,5 +1,13 @@ import { PlusOutlined, ReloadOutlined } from "@ant-design/icons"; -import { Badge, Button, Divider, Popconfirm, Space, Table } from "antd"; +import { + Badge, + Button, + Divider, + Popconfirm, + Space, + Table, + Tooltip, +} from "antd"; import { Link } from "react-router-dom"; import { Constants, @@ -31,6 +39,14 @@ const columns = [ title: "Description", dataIndex: "description", key: "description", + ellipsis: { + showTitle: false, + }, + render: (description) => ( + + {description} + + ), }, { title: "Step", diff --git a/src/Pages/GroupTasks/GroupTypeSelectionModal.js b/src/Pages/GroupTasks/GroupTypeSelectionModal.js index 98f57e7..3e7e6bb 100644 --- a/src/Pages/GroupTasks/GroupTypeSelectionModal.js +++ b/src/Pages/GroupTasks/GroupTypeSelectionModal.js @@ -162,8 +162,6 @@ export default function GroupTypeSelectionModal({ : null} - {console.log(currentSelectedModalGroupType)} - {currentSelectedModalGroupType !== null && (