From 0d9484f0a74cf6be297bdc354114e22832149ad7 Mon Sep 17 00:00:00 2001 From: Matthew Oliveira Date: Wed, 17 Jan 2024 15:17:14 -0500 Subject: [PATCH] fix(pagination): specify page-input-disabled property as boolean --- .../src/components/pagination/pagination.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/carbon-web-components/src/components/pagination/pagination.ts b/packages/carbon-web-components/src/components/pagination/pagination.ts index 04486044b6a..e78551f1ff5 100644 --- a/packages/carbon-web-components/src/components/pagination/pagination.ts +++ b/packages/carbon-web-components/src/components/pagination/pagination.ts @@ -1,7 +1,7 @@ /** * @license * - * Copyright IBM Corp. 2019, 2023 + * Copyright IBM Corp. 2019, 2024 * * This source code is licensed under the Apache-2.0 license found in the * LICENSE file in the root directory of this source tree. @@ -216,8 +216,8 @@ class CDSPagination extends FocusMixin(HostListenerMixin(LitElement)) { /** * true if the select box to change the page should be disabled. */ - @property({ attribute: 'page-input-disabled' }) - pageInputDisabled; + @property({ type: Boolean, attribute: 'page-input-disabled' }) + pageInputDisabled = false; /** * Number of items per page.