Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion web/src/components/EvidenceCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import React from "react";
import styled, { css } from "styled-components";

import Identicon from "react-identicons";
import ReactMarkdown from "react-markdown";

import { Card } from "@kleros/ui-components-library";

Expand Down Expand Up @@ -119,7 +120,7 @@ const EvidenceCard: React.FC<IEvidenceCard> = ({ evidence, sender, index }) => {
{data ? (
<>
<h3>{data.name}</h3>
<p>{data.description}</p>
<ReactMarkdown>{data.description}</ReactMarkdown>
</>
) : (
<p>{evidence}</p>
Expand Down