From 79057588947603739c293f83cc8a940f8557fe43 Mon Sep 17 00:00:00 2001 From: MattMo Date: Mon, 17 Jul 2023 12:33:46 -0700 Subject: [PATCH] Added a null and length check for pages before trying to modify their elements. --- ignite-template.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/ignite-template.js b/ignite-template.js index d405647..3108468 100644 --- a/ignite-template.js +++ b/ignite-template.js @@ -2735,7 +2735,9 @@ class pagination extends IgniteTemplate { } //Show the elements in the current page - this.pages[this.currentPage].forEach(item => item.style.removeProperty("display")); + if (this.pages && this.pages.length > 0) { + this.pages[this.currentPage].forEach(item => item.style.removeProperty("display")); + } } construct(parent, sibling) {