Only reload user if it _is_ a user #232

Merged
floatingghost merged 5 commits from four-oh-four into develop 2022-11-22 14:40:25 +00:00
1 changed files with 1 additions and 1 deletions
Showing only changes of commit 49da670ae4 - Show all commits

View File

@ -184,7 +184,7 @@ const UserProfile = {
},
watch: {
'$route.params.id': function (newVal) {
if (isUserPage(this.$route) && ewVal) {
if (isUserPage(this.$route) && newVal) {
this.switchUser(newVal)
}
},