diff --git a/CHANGELOG.md b/CHANGELOG.md index e3d2c011bbb..af851569c83 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,8 @@ ## [`master`](https://github.com/elastic/eui/tree/master) -No public interface changes since `21.0.0`. +**Bug Fixes** + +- Fixed `EuiFieldNumber` so values of type `number` are now allowed ([#3020](https://github.com/elastic/eui/pull/3020)) ## [`21.0.0`](https://github.com/elastic/eui/tree/v21.0.0) diff --git a/src/components/form/field_number/field_number.tsx b/src/components/form/field_number/field_number.tsx index a5ceefc4280..fa7938eeaa0 100644 --- a/src/components/form/field_number/field_number.tsx +++ b/src/components/form/field_number/field_number.tsx @@ -13,7 +13,6 @@ import { IconType } from '../../icon'; export type EuiFieldNumberProps = InputHTMLAttributes & CommonProps & { - value?: number | ''; icon?: IconType; isInvalid?: boolean; fullWidth?: boolean;