From a0833ca691dce24fa96a47cbab541bfa28ae0dc9 Mon Sep 17 00:00:00 2001
From: tamaina <tamaina@hotmail.co.jp>
Date: Sat, 15 Feb 2020 19:34:30 +0900
Subject: [PATCH] missing colon

---
 src/client/components/sub-note-content.vue | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/client/components/sub-note-content.vue b/src/client/components/sub-note-content.vue
index 63f56c7681..32752cf676 100644
--- a/src/client/components/sub-note-content.vue
+++ b/src/client/components/sub-note-content.vue
@@ -45,7 +45,7 @@ export default Vue.extend({
 		};
 	},
 	mounted() {
-		this.width = this.$refs.i.getBoundingClientRect().width
+		this.width = this.$refs.i.getBoundingClientRect().width;
 	}
 });
 </script>