From 901436a0957ac181e4ee742a1a959aff47db25a5 Mon Sep 17 00:00:00 2001
From: syuilo <Syuilotan@yahoo.co.jp>
Date: Mon, 25 Oct 2021 03:56:20 +0900
Subject: [PATCH] =?UTF-8?q?fix(client):=20=E3=83=A6=E3=83=BC=E3=82=B6?=
 =?UTF-8?q?=E3=83=BC=E3=83=9A=E3=83=BC=E3=82=B8=E3=81=AE=E3=83=8A=E3=83=93?=
 =?UTF-8?q?=E3=82=B2=E3=83=BC=E3=82=B7=E3=83=A7=E3=83=B3=E3=81=8C=E5=A4=B1?=
 =?UTF-8?q?=E6=95=97=E3=81=99=E3=82=8B=E5=95=8F=E9=A1=8C=E3=82=92=E4=BF=AE?=
 =?UTF-8?q?=E6=AD=A3?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

---
 CHANGELOG.md                    | 7 +++++++
 src/client/pages/user/index.vue | 2 ++
 2 files changed, 9 insertions(+)

diff --git a/CHANGELOG.md b/CHANGELOG.md
index b43fb528f9..3608e44346 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -7,6 +7,13 @@
 
 -->
 
+## 12.x.x (unreleased)
+
+### Improvements
+
+### Bugfixes
+- クライアント: ユーザーページのナビゲーションが失敗する問題を修正
+
 ## 12.94.0 (2021/10/25)
 
 ### Improvements
diff --git a/src/client/pages/user/index.vue b/src/client/pages/user/index.vue
index 5074c4531c..04585f3fd0 100644
--- a/src/client/pages/user/index.vue
+++ b/src/client/pages/user/index.vue
@@ -1,4 +1,5 @@
 <template>
+<div>
 <transition name="fade" mode="out-in">
 	<div class="ftskorzw wide" v-if="user && narrow === false">
 		<MkRemoteCaution v-if="user.host != null" :href="user.url"/>
@@ -190,6 +191,7 @@
 	<MkError v-else-if="error" @retry="fetch()"/>
 	<MkLoading v-else/>
 </transition>
+</div>
 </template>
 
 <script lang="ts">