Skip to content

Commit 438782f

Browse files
authored
fix: fix avatars here and there (monicahq/chandler#180)
1 parent 18792ad commit 438782f

File tree

4 files changed

+3
-9
lines changed

4 files changed

+3
-9
lines changed

.github/pull_request_template.md

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +0,0 @@
1-
You fool, don't forget these steps:
2-
3-
- [ ] Unit tests
4-
- [ ] Tests with Cypress
5-
- [ ] Documentation
6-
- [ ] Dummy data

resources/js/Pages/Vault/Contact/Index.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@
6262
v-for="contact in data.contacts"
6363
:key="contact.id"
6464
class="flex items-center border-b border-gray-200 px-5 py-2 hover:bg-slate-50">
65-
<avatar :data="contact.avatar" :classes="'mr-2 h-5 w-5'" />
65+
<avatar :data="contact.avatar" :classes="'rounded-full mr-2 h-5 w-5'" />
6666

6767
<inertia-link :href="contact.url.show" class="text-blue-500 hover:underline">
6868
{{ contact.name }}

resources/js/Pages/Vault/Files/Index.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@
7878

7979
<!-- avatar -->
8080
<div class="flex items-center">
81-
<avatar :data="file.contact.avatar" :classes="'mr-2 h-4 w-4'" />
81+
<avatar :data="file.contact.avatar" :classes="'rounded-full mr-2 h-4 w-4'" />
8282
<inertia-link :href="file.contact.url.show" class="text-sm text-blue-500 hover:underline">
8383
{{ file.contact.name }}
8484
</inertia-link>

resources/js/Shared/Modules/Notes.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@
148148
<!-- author -->
149149
<div v-if="note.author" class="relative mr-3 inline">
150150
<div class="icon-avatar relative flex">
151-
<avatar :data="note.author.avatar" :classes="'relative mr-1 h-3 w-3'" />
151+
<avatar :data="note.author.avatar" :classes="'rounded-full relative mr-1 h-3 w-3'" />
152152
<span>{{ note.author.name }}</span>
153153
</div>
154154
</div>

0 commit comments

Comments
 (0)