Commit e2bc3c6 1 parent 9a84777 commit e2bc3c6 Copy full SHA for e2bc3c6
File tree 1 file changed +24
-28
lines changed
1 file changed +24
-28
lines changed Original file line number Diff line number Diff line change 64
64
tabindex =" -1"
65
65
>
66
66
<!-- Hide comment photo only if it isn't the video uploader -->
67
- <template v-if =" hideCommentPhotos && ! comment .isOwner " >
68
- <div
69
- class =" commentThumbnailHidden"
70
- >
71
- {{ comment.author.substr(1, 1) }}
72
- </div >
73
- </template >
74
- <template v-else >
75
- <img
76
- :src =" comment.authorThumb"
77
- alt =" "
78
- class =" commentThumbnail"
79
- >
80
- </template >
67
+ <div
68
+ v-if =" hideCommentPhotos && !comment.isOwner"
69
+ class =" commentThumbnailHidden"
70
+ >
71
+ {{ comment.author.substring(1, 2) }}
72
+ </div >
73
+ <img
74
+ v-else
75
+ :src =" comment.authorThumb"
76
+ alt =" "
77
+ class =" commentThumbnail"
78
+ >
81
79
</router-link >
82
80
<p
83
81
v-if =" comment.isPinned"
186
184
tabindex =" -1"
187
185
>
188
186
<!-- Hide comment photo only if it isn't the video uploader -->
189
- <template v-if =" hideCommentPhotos && ! reply .isOwner " >
190
- <div
191
- class =" commentThumbnailHidden"
192
- >
193
- {{ reply.author.substr(1, 1) }}
194
- </div >
195
- </template >
196
- <template v-else >
197
- <img
198
- :src =" reply.authorThumb"
199
- alt =" "
200
- class =" commentThumbnail"
201
- >
202
- </template >
187
+ <div
188
+ v-if =" hideCommentPhotos && !reply.isOwner"
189
+ class =" commentThumbnailHidden"
190
+ >
191
+ {{ reply.author.substring(1, 2) }}
192
+ </div >
193
+ <img
194
+ v-else
195
+ :src =" reply.authorThumb"
196
+ alt =" "
197
+ class =" commentThumbnail"
198
+ >
203
199
</router-link >
204
200
<p class =" commentAuthorWrapper" >
205
201
<router-link
You can’t perform that action at this time.
0 commit comments