diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2017-06-14 01:24:11 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2017-06-14 01:24:11 +0900 |
| commit | 3e83ee9404b805f579ae136e7b1f951ab2897147 (patch) | |
| tree | cf0755f5a37662b28bebb845fa053c63bf4ac9a1 /src/web | |
| parent | [Client] :v: (diff) | |
| download | sharkey-3e83ee9404b805f579ae136e7b1f951ab2897147.tar.gz sharkey-3e83ee9404b805f579ae136e7b1f951ab2897147.tar.bz2 sharkey-3e83ee9404b805f579ae136e7b1f951ab2897147.zip | |
Fix #551
Diffstat (limited to 'src/web')
| -rw-r--r-- | src/web/app/common/scripts/text-compiler.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/web/app/common/scripts/text-compiler.js b/src/web/app/common/scripts/text-compiler.js index 20ed1877da..0a9b8022df 100644 --- a/src/web/app/common/scripts/text-compiler.js +++ b/src/web/app/common/scripts/text-compiler.js @@ -22,7 +22,7 @@ export default (tokens, shouldBreak) => { case 'bold': return `<strong>${escape(token.bold)}</strong>`; case 'url': - return `<mk-url href="${escape(token.content)}" target="_blank"/>`; + return `<mk-url href="${escape(token.content)}" target="_blank"></mk-url>`; case 'link': return `<a class="link" href="${escape(token.url)}" target="_blank" title="${escape(token.url)}">${escape(token.title)}</a>`; case 'mention': |