From 3bd92b410636637cfe9f69725936aa10f10b3434 Mon Sep 17 00:00:00 2001 From: Quinton Jason Date: Tue, 3 Feb 2026 21:11:28 -0600 Subject: [PATCH] fix: add reflect to prop --- .../pds-dropdown-menu-item/pds-dropdown-menu-item.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/core/src/components/pds-dropdown-menu/pds-dropdown-menu-item/pds-dropdown-menu-item.tsx b/libs/core/src/components/pds-dropdown-menu/pds-dropdown-menu-item/pds-dropdown-menu-item.tsx index 2588f33fb..c2055e9ff 100644 --- a/libs/core/src/components/pds-dropdown-menu/pds-dropdown-menu-item/pds-dropdown-menu-item.tsx +++ b/libs/core/src/components/pds-dropdown-menu/pds-dropdown-menu-item/pds-dropdown-menu-item.tsx @@ -24,7 +24,7 @@ export class PdsDropdownMenuItem implements BasePdsProps { * It determines whether or not the dropdown-item is disabled. * @defaultValue false */ - @Prop() disabled: boolean = false; + @Prop({ reflect: true }) disabled: boolean = false; /**