Skip to content

Commit a3d16d7

Browse files
committed
fix extra opening bracket
1 parent d016758 commit a3d16d7

3 files changed

Lines changed: 13 additions & 13 deletions

File tree

docs/Features.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -362,7 +362,7 @@ Check the following chapters to learn more about each search and filtering compo
362362

363363
Users often apply the same filters over and over again. Saved Queries **let users save a combination of filters** and sort parameters into a new, personal filter, that persists between sessions.
364364

365-
[<video controls autoplay muted loop>
365+
<video controls autoplay muted loop>
366366
<source src="./img/SavedQueriesList.webm" type="video/webm"/>
367367
Your browser does not support the video tag.
368368
</video>
@@ -649,7 +649,7 @@ When a user edits a record and hits the "Save" button, the UI shows a confirmati
649649

650650
But there is an additional benefit: it also allows the "Undo" feature. Undo is already functional in the admin at that point. Try editing a record, then hit the "Undo" link in the black confirmation box before it slides out. You'll see that the app does not send the `UPDATE` query to the API, and displays the non-modified data.
651651

652-
[<video controls autoplay muted loop>
652+
<video controls autoplay muted loop>
653653
<source src="./img/tutorial_post_edit_undo.webm" type="video/webm"/>
654654
Your browser does not support the video tag.
655655
</video>
@@ -1050,7 +1050,7 @@ End-users tweak the UI to their liking, and **they expect these preferences to b
10501050
10511051
For instance, the Saved Queries feature lets users **save a combination of filters** and sort parameters into a new, personal filter.
10521052
1053-
[<video controls autoplay muted loop>
1053+
<video controls autoplay muted loop>
10541054
<source src="./img/SavedQueriesList.webm" type="video/webm"/>
10551055
Your browser does not support the video tag.
10561056
</video>

docs/FilteringTutorial.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -393,7 +393,7 @@ export default {
393393

394394
## Saved Queries: Let Users Save Filter And Sort
395395

396-
[<video controls autoplay muted loop>
396+
<video controls autoplay muted loop>
397397
<source src="./img/SavedQueriesList.webm" type="video/webm"/>
398398
Your browser does not support the video tag.
399399
</video>

docs/Tutorial.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ This 30 minutes tutorial will expose how to create a new admin app based on an e
99

1010
Here is an overview of the result:
1111

12-
[<video controls autoplay muted loop>
12+
<video controls autoplay muted loop>
1313
<source src="./img/tutorial_overview.webm" type="video/webm"/>
1414
Your browser does not support the video tag.
1515
</video>
@@ -270,7 +270,7 @@ React-admin offers a large library of components you can pick from to build the
270270

271271
The react-admin layout is already responsive. Try to resize your browser to see how the sidebar switches to a drawer on smaller screens. Besides, the `<SimpleList>` component is a really good fit for mobile devices.
272272

273-
[<video controls autoplay muted loop>
273+
<video controls autoplay muted loop>
274274
<source src="./img/tutorial_mobile_user_list.webm" type="video/webm"/>
275275
Your browser does not support the video tag.
276276
</video>
@@ -314,7 +314,7 @@ export const UserList = () => {
314314

315315
This works exactly the way you expect.
316316

317-
[<video controls autoplay muted loop>
317+
<video controls autoplay muted loop>
318318
<source src="./img/tutorial_user_list_responsive.webm" type="video/webm"/>
319319
Your browser does not support the video tag.
320320
</video>
@@ -582,7 +582,7 @@ const App = () => (
582582
);
583583
```
584584

585-
[<video controls autoplay muted loop>
585+
<video controls autoplay muted loop>
586586
<source src="./img/tutorial_edit_guesser.webm" type="video/webm"/>
587587
Your browser does not support the video tag.
588588
</video>
@@ -724,7 +724,7 @@ const App = () => (
724724
);
725725
```
726726

727-
[<video controls autoplay muted loop>
727+
<video controls autoplay muted loop>
728728
<source src="./img/tutorial_post_create.webm" type="video/webm"/>
729729
Your browser does not support the video tag.
730730
</video>
@@ -742,7 +742,7 @@ That's because react-admin uses *optimistic updates*. When a user edits a record
742742

743743
But there is an additional benefit: it also allows the "Undo" feature. Undo is already functional in the admin at that point. Try editing a record, then hit the "Undo" link in the black confirmation box before it slides out. You'll see that the app does not send the `UPDATE` query to the API, and displays the non-modified data.
744744

745-
[<video controls autoplay muted loop>
745+
<video controls autoplay muted loop>
746746
<source src="./img/tutorial_post_edit_undo.webm" type="video/webm"/>
747747
Your browser does not support the video tag.
748748
</video>
@@ -807,7 +807,7 @@ export const PostList = () => (
807807

808808
The first filter, 'q', takes advantage of a full-text functionality offered by JSONPlaceholder. It is `alwaysOn`, so it always appears on the screen. Users can add the second filter, `userId`, thanks to the "add filter" button, located on the top of the list. As it's a `<ReferenceInput>`, it's already populated with possible users.
809809

810-
[<video controls autoplay muted loop>
810+
<video controls autoplay muted loop>
811811
<source src="./img/filters.webm" type="video/webm"/>
812812
Your browser does not support the video tag.
813813
</video>
@@ -834,7 +834,7 @@ const App = () => (
834834
);
835835
```
836836

837-
[<video controls autoplay muted loop>
837+
<video controls autoplay muted loop>
838838
<source src="./img/custom-menu.webm" type="video/webm"/>
839839
Your browser does not support the video tag.
840840
</video>
@@ -932,7 +932,7 @@ const App = () => (
932932

933933
Once the app reloads, it's now behind a login form that accepts everyone:
934934

935-
[<video controls autoplay muted loop>
935+
<video controls autoplay muted loop>
936936
<source src="./img/login.webm" type="video/webm"/>
937937
Your browser does not support the video tag.
938938
</video>

0 commit comments

Comments
 (0)