fix root issue for #968

This commit is contained in:
Collin M. Barrett 2019-09-21 14:59:10 -05:00
parent 558bfa6d3d
commit 8f7d20895b
2 changed files with 1 additions and 5 deletions

View file

@ -6,6 +6,6 @@ interface Props {
};
export const Description = (props: Props) =>
props.description
props.descriptionSourceUrl
? <blockquote cite={props.descriptionSourceUrl}>{props.description}</blockquote>
: <p>{props.description}</p>;

View file

@ -1,7 +1,3 @@
.ant-table-header-column > div {
margin-top: 8px;
}
tr blockquote {
word-break: break-word;
}