From 6252474495c63ceef57aaae65031a7e92e55e7f9 Mon Sep 17 00:00:00 2001 From: "ala'n (Alexey Stsefanovich)" Date: Mon, 22 Jul 2024 17:57:19 +0200 Subject: [PATCH] fix(esl-carousel): `esl-carousel-dots` does not re-renders after target re-definition --- src/modules/esl-carousel/plugin/dots/esl-carousel.nav.dots.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/esl-carousel/plugin/dots/esl-carousel.nav.dots.ts b/src/modules/esl-carousel/plugin/dots/esl-carousel.nav.dots.ts index 3ddda6f3a..b638c1a50 100644 --- a/src/modules/esl-carousel/plugin/dots/esl-carousel.nav.dots.ts +++ b/src/modules/esl-carousel/plugin/dots/esl-carousel.nav.dots.ts @@ -149,7 +149,7 @@ export class ESLCarouselNavDots extends ESLBaseElement { memoize.clear(this, '$carousel'); this.$$on(this._onSlideChange); } - this.update(); + this.update(true); this.updateA11y(); }