Skip to content

Commit 08634c3

Browse files
committed
Change NBSP for space character
1 parent 9b3b971 commit 08634c3

5 files changed

Lines changed: 6 additions & 6 deletions

File tree

docs/Form.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Use `<Form>` to build completely custom form layouts. Don't forget to include a
1515

1616
```jsx
1717
import { Create, Form, TextInput, RichTextInput, SaveButton } from 'react-admin';
18-
import { Grid } from '@mui/material';
18+
import { Grid } from '@mui/material';
1919

2020
export const PostCreate = () => (
2121
<Create>

docs/IconMenu.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ Then, create a custom layout using [the `<Layout>` component](./Layout.md) and p
4141
```jsx
4242
// in src/MyLayout.js
4343
import { Layout } from 'react-admin';
44-
import { AppLocationContext } from '@react-admin/ra-navigation';
44+
import { AppLocationContext } from '@react-admin/ra-navigation';
4545

4646
import { MyMenu } from './MyMenu';
4747

@@ -59,7 +59,7 @@ Finally, pass this custom layout to the `<Admin>` component. You should apply th
5959
```jsx
6060
// in src/App.js
6161
import { Admin, Resource } from "react-admin";
62-
import { theme } from '@react-admin/ra-navigation';
62+
import { theme } from '@react-admin/ra-navigation';
6363

6464
import { MyLayout } from './MyLayout';
6565

docs/ListTutorial.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ import {
202202
+ Pagination,
203203
+ TextInput
204204
} from 'react-admin';
205-
-import { Card, TextField as MuiTextField, Button, Toolbar } from '@mui/material';
205+
-import { Card, TextField as MuiTextField, Button, Toolbar } from '@mui/material';
206206
+import { Card } from '@mui/material';
207207

208208
const BookList = () => {

docs/MultiLevelMenu.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ Then, create a custom layout using [the `<Layout>` component](./Layout.md) and p
5555
```jsx
5656
// in src/MyLayout.js
5757
import { Layout } from 'react-admin';
58-
import { AppLocationContext } from '@react-admin/ra-navigation';
58+
import { AppLocationContext } from '@react-admin/ra-navigation';
5959

6060
import { MyMenu } from './MyMenu';
6161

docs/NumberInput.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ const convertStringToNumber = value => {
6161
};
6262

6363
const productFilters = [
64-
<TextInput label="Stock less than" source="stock_lte" type="number" parse={convertStringToNumber} />,
64+
<TextInput label="Stock less than" source="stock_lte" type="number" parse={convertStringToNumber} />,
6565
];
6666

6767
export const ProductList = () => (

0 commit comments

Comments
 (0)