Skip to content
Snippets Groups Projects
Commit 19505704 authored by HJ's avatar HJ :fire:
Browse files

Merge branch 'fix/minor-fixes-console-warnings-stretching' into 'develop'

Misc fixes: Fix uploads stretching on chrome, fix warnings in console

See merge request pleroma/pleroma-fe!842
parents ac46de39 76efbcbe
Branches
No related tags found
No related merge requests found
......@@ -68,6 +68,7 @@
max-height: 200px;
max-width: 100%;
display: flex;
align-items: center;
video {
max-width: 100%;
}
......
<template>
<div class="avatars">
<router-link :to="userProfileLink(user)" class="avatars-item" v-for="user in slicedUsers">
<router-link
:to="userProfileLink(user)"
class="avatars-item"
v-for="user in slicedUsers"
:key="user.id"
>
<UserAvatar :user="user" class="avatar-small" />
</router-link>
</div>
......
......@@ -139,6 +139,7 @@ const conversation = {
return (this.isExpanded) && id === this.status.id
},
setHighlight (id) {
if (!id) return
this.highlight = id
this.$store.dispatch('fetchFavsAndRepeats', id)
},
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment