Skip to content

Commit

Permalink
Link class was incorrect. Correcting issue SabakiHQ#748 (SabakiHQ#754)
Browse files Browse the repository at this point in the history
Co-authored-by: Franck Meyer <meyer.f74@gmail.com>
  • Loading branch information
baldor-f and Franck Meyer authored Nov 22, 2020
1 parent 3c22c53 commit 1a41ea0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/MarkdownContentDisplay.js
Original file line number Diff line number Diff line change
@@ -46,7 +46,7 @@ function Link({href, title, children}) {
return h(
ContentDisplay,
{},
h('a', {class: 'external', href, title}, typographer(children))
h('a', {class: 'comment-external', href, title}, typographer(children))
)
}

0 comments on commit 1a41ea0

Please sign in to comment.