long description

main
alex 2023-05-19 20:41:20 +02:00
parent c5c4e853d1
commit c23452b9da
2 changed files with 17 additions and 3 deletions

View File

@ -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) => (
<Tooltip placement="topLeft" title={description}>
{description}
</Tooltip>
),
},
{
title: "Step",

View File

@ -162,8 +162,6 @@ export default function GroupTypeSelectionModal({
: null}
</Select>
{console.log(currentSelectedModalGroupType)}
{currentSelectedModalGroupType !== null && (
<Form layout="vertical">
<br />