diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2020-02-12 00:31:48 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2020-02-12 00:31:48 +0900 |
| commit | 2068407be0e6281b42cfd29e6e9f13448b110c84 (patch) | |
| tree | 9a3670b7774354640c4c1d4c5b02e00ba48179a6 /src/client | |
| parent | サーバーから切断されましたのダイアログは時間をおい... (diff) | |
| download | misskey-2068407be0e6281b42cfd29e6e9f13448b110c84.tar.gz misskey-2068407be0e6281b42cfd29e6e9f13448b110c84.tar.bz2 misskey-2068407be0e6281b42cfd29e6e9f13448b110c84.zip | |
Update app.vue
Diffstat (limited to 'src/client')
| -rw-r--r-- | src/client/app.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/app.vue b/src/client/app.vue index 7b4796d747..487ab4e807 100644 --- a/src/client/app.vue +++ b/src/client/app.vue @@ -278,7 +278,7 @@ export default Vue.extend({ const lastChild = this.$refs.widgets.children[this.$refs.widgets.children.length - 1]; if (lastChild == null) return; - const width = lastChild.offsetLeft + 300; + const width = lastChild.offsetLeft + 300 + 16; this.$refs.widgets.style.width = width + 'px'; }; setInterval(adjustWidgetsWidth, 1000); |