Skip to content
This repository was archived by the owner on Feb 6, 2024. It is now read-only.

Commit 3f96696

Browse files
fix: typo
1 parent d6eb9a8 commit 3f96696

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/components/deck/deckdeckgo-deck/deckdeckgo-deck.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -534,10 +534,10 @@ export class DeckdeckgoDeck {
534534
// Lazy load images from slot=background
535535
private lazyBackgroungImages(): Promise<void> {
536536
return new Promise<void>(async (resolve) => {
537-
const allSlotedImages: NodeListOf<HTMLElement> = this.el.querySelectorAll('img[slot=\'background\']');
537+
const allSlottedImages: NodeListOf<HTMLElement> = this.el.querySelectorAll('img[slot=\'background\']');
538538
const allShadowImages: NodeListOf<HTMLElement> = this.el.querySelectorAll('[slot=\'background\'] img');
539539

540-
const images: HTMLElement[] = Array.from(allSlotedImages).concat(Array.from(allShadowImages));
540+
const images: HTMLElement[] = Array.from(allSlottedImages).concat(Array.from(allShadowImages));
541541

542542
await DeckdeckgoUtils.lazyLoadSelectedImages(images);
543543

0 commit comments

Comments
 (0)