diff options
| author | tamaina <tamaina@hotmail.co.jp> | 2020-02-15 21:31:56 +0900 |
|---|---|---|
| committer | tamaina <tamaina@hotmail.co.jp> | 2020-02-15 21:31:56 +0900 |
| commit | f799375635664dad2dfb9c6c5d4682d18f82f305 (patch) | |
| tree | ecddba8f11b4065cc460a005be9bc6255807dc62 /src/client/components | |
| parent | :v: (diff) | |
| download | misskey-f799375635664dad2dfb9c6c5d4682d18f82f305.tar.gz misskey-f799375635664dad2dfb9c6c5d4682d18f82f305.tar.bz2 misskey-f799375635664dad2dfb9c6c5d4682d18f82f305.zip | |
fix
Diffstat (limited to 'src/client/components')
| -rw-r--r-- | src/client/components/sub-note-content.vue | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/src/client/components/sub-note-content.vue b/src/client/components/sub-note-content.vue index fdb311c626..e60c197442 100644 --- a/src/client/components/sub-note-content.vue +++ b/src/client/components/sub-note-content.vue @@ -1,5 +1,5 @@ <template> -<div class="wrmlmaau" ref="i"> +<div class="wrmlmaau"> <div class="body"> <span v-if="note.isHidden" style="opacity: 0.5">({{ $t('private') }})</span> <span v-if="note.deletedAt" style="opacity: 0.5">({{ $t('deleted') }})</span> @@ -39,14 +39,8 @@ export default Vue.extend({ }, data() { return { - i: this.$refs.i, - faReply }; - }, - mounted() { - // for Safari bug - this.width = this.$refs.i.getBoundingClientRect().width; } }); </script> |