summaryrefslogtreecommitdiff
path: root/src/client
diff options
context:
space:
mode:
Diffstat (limited to 'src/client')
-rw-r--r--src/client/components/sub-note-content.vue8
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>