FIX: Ensure low-resolution placeholders are used while loading images (#18194)

This commit is contained in:
David Taylor 2022-09-07 17:04:42 +02:00 committed by GitHub
parent c1887d95ff
commit 415535d577
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -25,7 +25,7 @@ export function nativeLazyLoading(api) {
img.style.setProperty(
"background-image",
`url(${img.dataset.smallUpload});`
`url(${img.dataset.smallUpload})`
);
img.style.setProperty("background-size", "cover");
}