We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4f475c7 commit ae3a610Copy full SHA for ae3a610
core/field_input.ts
@@ -191,7 +191,7 @@ export abstract class FieldInput<T extends InputTypes> extends Field<
191
192
const element = this.getFocusableElement();
193
const label = [this.getValue(), this.getAriaName()]
194
- .filter((item) => !!item)
+ .filter((item) => item !== null)
195
.join(', ');
196
197
aria.setState(element, aria.State.LABEL, label);
0 commit comments