1
0
Fork 0
mirror of https://github.com/muerwre/vault-frontend.git synced 2025-04-25 21:06:42 +07:00

flow get more

This commit is contained in:
Fedor Katurov 2019-11-18 14:49:32 +07:00
parent f440a5f4c3
commit 971578bb21
11 changed files with 281 additions and 159 deletions

View file

@ -9,6 +9,7 @@ import { flowSetCellView } from "~/redux/flow/actions";
import { PRESETS } from "~/constants/urls";
import { debounce } from "throttle-debounce";
import { NODE_TYPES } from "~/redux/node/constants";
import { Group } from "~/components/containers/Group";
interface IProps {
node: INode;
@ -135,7 +136,7 @@ const Cell: FC<IProps> = ({
<div className={styles.text}>
{title && <div className={styles.text_title}>{title}</div>}
<div
<Group
dangerouslySetInnerHTML={{ __html: formatCellText(text) }}
/>
</div>
@ -145,7 +146,7 @@ const Cell: FC<IProps> = ({
<div className={styles.text_only}>
{title && <div className={styles.text_title}>{title}</div>}
<div
<Group
dangerouslySetInnerHTML={{ __html: formatCellText(text) }}
/>
</div>