From 5b42794a193018ab0ccc7d15a54183fb57262239 Mon Sep 17 00:00:00 2001 From: Ahmad Date: Tue, 16 Apr 2024 04:43:59 +0330 Subject: [PATCH] - Fix thousandSeparator missing from documentation --- documentation/v5/docs/numeric_format.md | 2 +- documentation/v5/docs/props.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/documentation/v5/docs/numeric_format.md b/documentation/v5/docs/numeric_format.md index f56bdf23..0d8e1293 100644 --- a/documentation/v5/docs/numeric_format.md +++ b/documentation/v5/docs/numeric_format.md @@ -90,7 +90,7 @@ This allow supporting custom input components with number format. import { NumericFormat } from 'react-number-format'; import { TextField } from '@mui/material'; -; +; ```
diff --git a/documentation/v5/docs/props.md b/documentation/v5/docs/props.md index a75b793c..97ee9e35 100644 --- a/documentation/v5/docs/props.md +++ b/documentation/v5/docs/props.md @@ -15,7 +15,7 @@ This allow supporting custom input components with number format. import { NumericFormat } from 'react-number-format'; import { TextField } from '@mui/material'; -; +; ``` **Note**: customInput expects reference of component (not a render prop), if you pass an inline component like this ` } />`, it will not work.