Skip to content

Commit f96943e

Browse files
committed
fix markdown lint
1 parent 83162c3 commit f96943e

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

docs/data/migration/migration-data-grid-v8/migration-data-grid-v8.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ In `package.json`, change the version of the Data Grid package to `next`.
3939
To disable the pagination formatting, provide the key and value to `localeText` prop:
4040

4141
```diff
42-
<DataGrid
42+
<DataGrid
4343
+ localeText={{
4444
+ paginationDisplayedRows: ({ from, to, count, estimated }) => {
4545
+ if (!estimated) {
@@ -52,5 +52,5 @@ In `package.json`, change the version of the Data Grid package to `next`.
5252
+ return `${from}–${to} of ${count !== -1 ? count : estimatedLabel}`;
5353
+ }
5454
+ }}
55-
/>
55+
/>
5656
```

0 commit comments

Comments
 (0)