diff --git a/client/coral-plugin-history/Comment.css b/client/coral-plugin-history/Comment.css index ba2a59f4b..f54b0ad29 100644 --- a/client/coral-plugin-history/Comment.css +++ b/client/coral-plugin-history/Comment.css @@ -1,3 +1,11 @@ +.myComment { + border-bottom: 1px solid lightgrey; +} + +.myComment:last-child { + border-bottom: none; +} + .assetURL { font-size: 16px; color: black; diff --git a/client/coral-plugin-history/Comment.js b/client/coral-plugin-history/Comment.js index fd515e628..036753623 100644 --- a/client/coral-plugin-history/Comment.js +++ b/client/coral-plugin-history/Comment.js @@ -4,9 +4,9 @@ import styles from './Comment.css'; const Comment = props => { return ( -
- {`${props.asset.url}#${props.comment.id}`} + {props.asset.url}
{props.comment.body}
Loading comment history...
} diff --git a/tests/client/coral-plugin-history/Comment.spec.js b/tests/client/coral-plugin-history/Comment.spec.js index 2098fa1b3..78ad104bf 100644 --- a/tests/client/coral-plugin-history/Comment.spec.js +++ b/tests/client/coral-plugin-history/Comment.spec.js @@ -21,7 +21,8 @@ describe('coral-plugin-history/Comment', () => { it('should render the asset url as a link', () => { const wrapper = mount(