long description
parent
c5c4e853d1
commit
c23452b9da
|
@ -1,5 +1,13 @@
|
||||||
import { PlusOutlined, ReloadOutlined } from "@ant-design/icons";
|
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 { Link } from "react-router-dom";
|
||||||
import {
|
import {
|
||||||
Constants,
|
Constants,
|
||||||
|
@ -31,6 +39,14 @@ const columns = [
|
||||||
title: "Description",
|
title: "Description",
|
||||||
dataIndex: "description",
|
dataIndex: "description",
|
||||||
key: "description",
|
key: "description",
|
||||||
|
ellipsis: {
|
||||||
|
showTitle: false,
|
||||||
|
},
|
||||||
|
render: (description) => (
|
||||||
|
<Tooltip placement="topLeft" title={description}>
|
||||||
|
{description}
|
||||||
|
</Tooltip>
|
||||||
|
),
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Step",
|
title: "Step",
|
||||||
|
|
|
@ -162,8 +162,6 @@ export default function GroupTypeSelectionModal({
|
||||||
: null}
|
: null}
|
||||||
</Select>
|
</Select>
|
||||||
|
|
||||||
{console.log(currentSelectedModalGroupType)}
|
|
||||||
|
|
||||||
{currentSelectedModalGroupType !== null && (
|
{currentSelectedModalGroupType !== null && (
|
||||||
<Form layout="vertical">
|
<Form layout="vertical">
|
||||||
<br />
|
<br />
|
||||||
|
|
Loading…
Reference in New Issue