File tree 10 files changed +12
-12
lines changed
10 files changed +12
-12
lines changed Original file line number Diff line number Diff line change 26
26
<jet-dropdown align =" right" width =" 48" >
27
27
<template #trigger >
28
28
<button class =" flex text-sm border-2 border-transparent rounded-full focus:outline-none focus:border-gray-300 transition duration-150 ease-in-out" >
29
- <img class =" h-8 w-8 rounded-full" :src =" $page.user.profile_photo_url" alt =" " />
29
+ <img class =" h-8 w-8 rounded-full" :src =" $page.user.profile_photo_url" : alt =" $page.user.name " />
30
30
</button >
31
31
</template >
32
32
117
117
<div class =" pt-4 pb-1 border-t border-gray-200" >
118
118
<div class =" flex items-center px-4" >
119
119
<div class =" flex-shrink-0" >
120
- <img class =" h-10 w-10 rounded-full" :src =" $page.user.profile_photo_url" alt =" " />
120
+ <img class =" h-10 w-10 rounded-full" :src =" $page.user.profile_photo_url" : alt =" $page.user.name " />
121
121
</div >
122
122
123
123
<div class =" ml-3" >
Original file line number Diff line number Diff line change 20
20
21
21
<!-- Current Profile Photo -->
22
22
<div class =" mt-2" v-show =" ! photoPreview" >
23
- <img :src =" $page.user.profile_photo_url" class =" rounded-full h-20 w-20" >
23
+ <img :src =" $page.user.profile_photo_url" alt = " Current Profile Photo " class =" rounded-full h-20 w-20" >
24
24
</div >
25
25
26
26
<!-- New Profile Photo Preview -->
Original file line number Diff line number Diff line change 13
13
<jet-label value =" Team Owner" />
14
14
15
15
<div class =" flex items-center mt-2" >
16
- <img class =" w-12 h-12 rounded-full" :src =" $page.user.profile_photo_url" >
16
+ <img class =" w-12 h-12 rounded-full" :src =" $page.user.profile_photo_url" :alt = " $page.user.name " >
17
17
18
18
<div class =" ml-4 leading-tight" >
19
19
<div >{{ $page.user.name }}</div >
Original file line number Diff line number Diff line change 87
87
<div class =" space-y-6" >
88
88
<div class =" flex items-center justify-between" v-for =" user in team.users" >
89
89
<div class =" flex items-center" >
90
- <img class =" w-8 h-8 rounded-full" :src =" user.profile_photo_url" >
90
+ <img class =" w-8 h-8 rounded-full" :src =" user.profile_photo_url" :alt = " user.name " >
91
91
<div class =" ml-4" >{{ user.name }}</div >
92
92
</div >
93
93
Original file line number Diff line number Diff line change 14
14
<jet-label value =" Team Owner" />
15
15
16
16
<div class =" flex items-center mt-2" >
17
- <img class =" w-12 h-12 rounded-full" :src =" team.owner.profile_photo_url" >
17
+ <img class =" w-12 h-12 rounded-full" :src =" team.owner.profile_photo_url" :alt = " team.owner.name " >
18
18
19
19
<div class =" ml-4 leading-tight" >
20
20
<div >{{ team.owner.name }}</div >
Original file line number Diff line number Diff line change 45
45
<x-jet-dropdown align =" right" width =" 48" >
46
46
<x-slot name =" trigger" >
47
47
<button class =" flex text-sm border-2 border-transparent rounded-full focus:outline-none focus:border-gray-300 transition duration-150 ease-in-out" >
48
- <img class =" h-8 w-8 rounded-full" src =" {{ Auth:: user ()-> profile_photo_url } }" alt =" " />
48
+ <img class =" h-8 w-8 rounded-full" src =" {{ Auth:: user ()-> profile_photo_url } }" alt =" {{ Auth :: user () -> name } } " />
49
49
</button >
50
50
</x-slot >
51
51
136
136
<div class =" pt-4 pb-1 border-t border-gray-200" >
137
137
<div class =" flex items-center px-4" >
138
138
<div class =" flex-shrink-0" >
139
- <img class =" h-10 w-10 rounded-full" src =" {{ Auth:: user ()-> profile_photo_url } }" alt =" " />
139
+ <img class =" h-10 w-10 rounded-full" src =" {{ Auth:: user ()-> profile_photo_url } }" alt =" {{ Auth :: user () -> name } } " />
140
140
</div >
141
141
142
142
<div class =" ml-3" >
Original file line number Diff line number Diff line change 28
28
29
29
<!-- Current Profile Photo -->
30
30
<div class =" mt-2" x-show =" ! photoPreview" >
31
- <img src =" {{ $this -> user -> profile_photo_url } }" class =" rounded-full h-20 w-20" >
31
+ <img src =" {{ $this -> user -> profile_photo_url } }" alt = " {{ $this -> user -> name } } " class =" rounded-full h-20 w-20" >
32
32
</div >
33
33
34
34
<!-- New Profile Photo Preview -->
Original file line number Diff line number Diff line change 12
12
<x-jet-label value =" Team Owner" />
13
13
14
14
<div class =" flex items-center mt-2" >
15
- <img class =" w-12 h-12 rounded-full" src =" {{ $this -> user -> profile_photo_url } }" >
15
+ <img class =" w-12 h-12 rounded-full" src =" {{ $this -> user -> profile_photo_url } }" alt = " {{ $this -> user -> name } } " >
16
16
17
17
<div class =" ml-4 leading-tight" >
18
18
<div >{{ $this -> user -> name } } </div >
Original file line number Diff line number Diff line change 94
94
@foreach ($team -> users -> sortBy (' name' ) as $user )
95
95
<div class =" flex items-center justify-between" >
96
96
<div class =" flex items-center" >
97
- <img class =" w-8 h-8 rounded-full" src =" {{ $user -> profile_photo_url } }" >
97
+ <img class =" w-8 h-8 rounded-full" src =" {{ $user -> profile_photo_url } }" alt = " {{ $user -> name } } " >
98
98
<div class =" ml-4" >{{ $user -> name } } </div >
99
99
</div >
100
100
Original file line number Diff line number Diff line change 13
13
<x-jet-label value =" Team Owner" />
14
14
15
15
<div class =" flex items-center mt-2" >
16
- <img class =" w-12 h-12 rounded-full" src =" {{ $team -> owner -> profile_photo_url } }" >
16
+ <img class =" w-12 h-12 rounded-full" src =" {{ $team -> owner -> profile_photo_url } }" alt = " {{ $team -> owner -> name } } " >
17
17
18
18
<div class =" ml-4 leading-tight" >
19
19
<div >{{ $team -> owner -> name } } </div >
You can’t perform that action at this time.
0 commit comments