diff options
| author | Shpuld Shpuldson <shp@cock.li> | 2020-04-23 14:44:55 +0300 |
|---|---|---|
| committer | Shpuld Shpuldson <shp@cock.li> | 2020-04-23 14:44:55 +0300 |
| commit | c476193fd9e5bbb783ad4d3be80839caf180f598 (patch) | |
| tree | 89b44ad4e9909de06a7cc1a5a45769bbfa563654 | |
| parent | ca00e93b6092c855b0109e1e6dab93c29a28716a (diff) | |
minor lint fixes
| -rw-r--r-- | src/components/user_panel/user_panel.vue | 2 | ||||
| -rw-r--r-- | src/components/user_profile/user_profile.vue | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/components/user_panel/user_panel.vue b/src/components/user_panel/user_panel.vue index ea4e2e9f..1db4f648 100644 --- a/src/components/user_panel/user_panel.vue +++ b/src/components/user_panel/user_panel.vue @@ -6,7 +6,7 @@ class="panel panel-default signed-in" > <UserCard - :userId="user.id" + :user-id="user.id" :hide-bio="true" rounded="top" /> diff --git a/src/components/user_profile/user_profile.vue b/src/components/user_profile/user_profile.vue index 7855c839..1871d46c 100644 --- a/src/components/user_profile/user_profile.vue +++ b/src/components/user_profile/user_profile.vue @@ -5,7 +5,7 @@ class="user-profile panel panel-default" > <UserCard - :userId="user.id" + :user-id="userId" :switcher="true" :selected="timeline.viewing" :allow-zooming-avatar="true" |
