diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2020-10-25 15:45:47 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2020-10-25 15:45:47 +0900 |
| commit | 25d8077474b03ba7becaed67471a32d1d127de54 (patch) | |
| tree | 6d280c1846c57abd2130da06348f29f71eff7c41 /src/client | |
| parent | :art: (diff) | |
| download | misskey-25d8077474b03ba7becaed67471a32d1d127de54.tar.gz misskey-25d8077474b03ba7becaed67471a32d1d127de54.tar.bz2 misskey-25d8077474b03ba7becaed67471a32d1d127de54.zip | |
Fix bug
Diffstat (limited to 'src/client')
| -rw-r--r-- | src/client/ui/default.vue | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/ui/default.vue b/src/client/ui/default.vue index c16ea8008b..ae91405eda 100644 --- a/src/client/ui/default.vue +++ b/src/client/ui/default.vue @@ -80,9 +80,9 @@ export default defineComponent({ provide() { return { - sideViewHook: (url) => { + sideViewHook: this.isDesktop ? (url) => { this.$refs.side.navigate(url); - } + } : null }; }, |