diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2018-12-30 09:15:56 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2018-12-30 09:15:56 +0900 |
| commit | 23b3e33df6c732106540bac92d0306a9862321f0 (patch) | |
| tree | 9a0d8ae1d6e5540db28ea22d54410d5ef84ce0f8 /src/client | |
| parent | oops (diff) | |
| download | misskey-23b3e33df6c732106540bac92d0306a9862321f0.tar.gz misskey-23b3e33df6c732106540bac92d0306a9862321f0.tar.bz2 misskey-23b3e33df6c732106540bac92d0306a9862321f0.zip | |
[Client] Fix bug
Diffstat (limited to 'src/client')
| -rw-r--r-- | src/client/app/common/views/components/mfm.ts | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/client/app/common/views/components/mfm.ts b/src/client/app/common/views/components/mfm.ts index 69ae7638a5..4adce68dc2 100644 --- a/src/client/app/common/views/components/mfm.ts +++ b/src/client/app/common/views/components/mfm.ts @@ -129,7 +129,9 @@ export default Vue.component('misskey-flavored-markdown', { key: Math.random(), props: { url: token.node.props.url, - target: '_blank', + target: '_blank' + }, + attrs: { style: 'color:var(--mfmLink);' } })]; |