From ae3a610ba50ad526adee9a730875e18e0b098a43 Mon Sep 17 00:00:00 2001 From: Aaron Dodson Date: Mon, 27 Oct 2025 10:35:07 -0700 Subject: [PATCH] fix: Don't filter out falsey input values when generating ARIA labels. (#9439) --- core/field_input.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/field_input.ts b/core/field_input.ts index 5d4d3bdb3..244c6da42 100644 --- a/core/field_input.ts +++ b/core/field_input.ts @@ -191,7 +191,7 @@ export abstract class FieldInput extends Field< const element = this.getFocusableElement(); const label = [this.getValue(), this.getAriaName()] - .filter((item) => !!item) + .filter((item) => item !== null) .join(', '); aria.setState(element, aria.State.LABEL, label);