|
@@ -1,6 +1,6 @@
|
|
|
import { useRef, useState, useCallback, useMemo } from "react";
|
|
|
-import { Form, Modal, Tooltip, notification } from "antd";
|
|
|
-import { DeleteOutlined, PlusOutlined } from "@ant-design/icons";
|
|
|
+import { Form, Tooltip } from "antd";
|
|
|
+import { PlusOutlined } from "@ant-design/icons";
|
|
|
import { Tabla } from "../../components";
|
|
|
import { SimpleTableLayout } from "../../components/layouts";
|
|
|
import { ActionsButton } from "../../components";
|
|
@@ -48,8 +48,6 @@ const Condicionantes = () => {
|
|
|
</Link>
|
|
|
);
|
|
|
|
|
|
-
|
|
|
-
|
|
|
const columns = [
|
|
|
{
|
|
|
title: "Acciones",
|
|
@@ -88,7 +86,9 @@ const Condicionantes = () => {
|
|
|
title: "Descripción",
|
|
|
key: "descripcion",
|
|
|
dataIndex: "descripcion",
|
|
|
- render: linkText,
|
|
|
+ render: (text) => (
|
|
|
+ <div dangerouslySetInnerHTML={{ __html: text }} />
|
|
|
+ ),
|
|
|
},
|
|
|
{
|
|
|
title: "Activa",
|