added file owner into file detail panel

This commit is contained in:
Čarodej
2021-10-25 08:30:41 +02:00
parent 69fccfeaad
commit 3ec5166936
4 changed files with 103 additions and 13 deletions
@@ -4,7 +4,7 @@
v-if="item.data.relationships.user.data.attributes.avatar"
class="user-image"
:src="item.data.relationships.user.data.attributes.avatar"
alt="item.data.relationships.user.data.attributes.name"
:alt="item.data.relationships.user.data.attributes.name"
>
<TypedAvatar
v-else
@@ -22,9 +22,9 @@
components: {
TypedAvatar
},
props: {
item: {type: Function}
}
props: [
'item',
]
}
</script>
<style scoped lang="scss">