FIX: gives emojis a width/height to prevent lazy loading warning (#10277)

This commit is contained in:
Joffrey JAFFEUX 2020-07-21 08:50:56 +02:00 committed by GitHub
parent 936a40adcf
commit de5245631b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -62,7 +62,7 @@
<div class='section-group'>
{{#each emojis as |emoji|}}
<button type="button" class="custom emoji" tabindex="-1" title="{{emoji.code}}">
<img loading="lazy" class="emoji" src="{{emoji.src}}">
<img width=20 height=20 loading="lazy" class="emoji" src="{{emoji.src}}">
</button>
{{/each}}
</div>