diff options
| author | taehoon <th.dev91@gmail.com> | 2019-02-21 13:32:47 -0500 |
|---|---|---|
| committer | taehoon <th.dev91@gmail.com> | 2019-02-26 11:08:13 -0500 |
| commit | e687b58091bcedb6f3a56d94030fa312e51830d5 (patch) | |
| tree | 9cfb2f39c6ae58520a354f66eb75d5eb14a2ecec /src/components/user_profile/user_profile.vue | |
| parent | d5348c13ff542ae77c3c87e381dc54f5e7619acc (diff) | |
Show error message when visit profile page of invalid user
Diffstat (limited to 'src/components/user_profile/user_profile.vue')
| -rw-r--r-- | src/components/user_profile/user_profile.vue | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/components/user_profile/user_profile.vue b/src/components/user_profile/user_profile.vue index 09fb93de..ccebe20b 100644 --- a/src/components/user_profile/user_profile.vue +++ b/src/components/user_profile/user_profile.vue @@ -55,7 +55,8 @@ </div> </div> <div class="panel-body"> - <i class="icon-spin3 animate-spin"></i> + <span v-if="error">{{ $t('user_profile.profile_does_not_exist') }}</span> + <i class="icon-spin3 animate-spin" v-else></i> </div> </div> </div> |
