long description
parent
c5c4e853d1
commit
c23452b9da
|
@ -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",
|
||||
|
|
|
@ -162,8 +162,6 @@ export default function GroupTypeSelectionModal({
|
|||
: null}
|
||||
</Select>
|
||||
|
||||
{console.log(currentSelectedModalGroupType)}
|
||||
|
||||
{currentSelectedModalGroupType !== null && (
|
||||
<Form layout="vertical">
|
||||
<br />
|
||||
|
|
Loading…
Reference in New Issue