mirror of
https://github.com/Troplo/Colubrina.git
synced 2024-11-22 11:17:56 +11:00
Fixed broken formatting
This commit is contained in:
parent
7f787bcebc
commit
7261f70293
1 changed files with 20 additions and 20 deletions
|
@ -302,41 +302,41 @@
|
||||||
></v-progress-circular>
|
></v-progress-circular>
|
||||||
<template v-for="(message, index) in messages">
|
<template v-for="(message, index) in messages">
|
||||||
<div
|
<div
|
||||||
:key="'div2-' + message.keyId"
|
:key="'div2-' + message.keyId"
|
||||||
v-if="message.readReceipts.length"
|
v-if="message.readReceipts.length"
|
||||||
>
|
>
|
||||||
<v-tooltip
|
<v-tooltip
|
||||||
v-for="association in message.readReceipts"
|
v-for="association in message.readReceipts"
|
||||||
:key="association.id"
|
:key="association.id"
|
||||||
top
|
top
|
||||||
>
|
>
|
||||||
<template
|
<template
|
||||||
v-slot:activator="{ on }"
|
v-slot:activator="{ on }"
|
||||||
v-if="association.user.id !== $store.state.user.id"
|
v-if="association.user.id !== $store.state.user.id"
|
||||||
>
|
>
|
||||||
<v-btn
|
<v-btn
|
||||||
icon
|
icon
|
||||||
small
|
small
|
||||||
fab
|
fab
|
||||||
width="20"
|
width="20"
|
||||||
height="20"
|
height="20"
|
||||||
class="ml-2 mt-2"
|
class="ml-2 mt-2"
|
||||||
style="float: right"
|
style="float: right"
|
||||||
@click="openUserPanel(association.user)"
|
@click="openUserPanel(association.user)"
|
||||||
>
|
>
|
||||||
<v-avatar size="20" v-on="on" color="primary">
|
<v-avatar size="20" v-on="on" color="primary">
|
||||||
<img
|
<img
|
||||||
v-if="association.user.avatar"
|
v-if="association.user.avatar"
|
||||||
:src="
|
:src="
|
||||||
$store.state.baseURL +
|
$store.state.baseURL +
|
||||||
'/usercontent/' +
|
'/usercontent/' +
|
||||||
association.user.avatar
|
association.user.avatar
|
||||||
"
|
"
|
||||||
alt="avatar"
|
alt="avatar"
|
||||||
/>
|
/>
|
||||||
<span v-else>{{
|
<span v-else>{{
|
||||||
association.user.username[0].toUpperCase()
|
association.user.username[0].toUpperCase()
|
||||||
}}</span>
|
}}</span>
|
||||||
</v-avatar>
|
</v-avatar>
|
||||||
</v-btn>
|
</v-btn>
|
||||||
</template>
|
</template>
|
||||||
|
|
Loading…
Reference in a new issue