From a555ba235add122ab9c82034c8f34d5c17d54a6e Mon Sep 17 00:00:00 2001 From: Chris Lock Date: Fri, 1 Nov 2024 11:54:07 +0000 Subject: [PATCH 1/4] DOC Adding missing quote on routing example --- en/02_Developer_Guides/02_Controllers/02_Routing.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/en/02_Developer_Guides/02_Controllers/02_Routing.md b/en/02_Developer_Guides/02_Controllers/02_Routing.md index f41cfbb44..f780ed99a 100644 --- a/en/02_Developer_Guides/02_Controllers/02_Routing.md +++ b/en/02_Developer_Guides/02_Controllers/02_Routing.md @@ -201,7 +201,7 @@ start parsing variables and the appropriate controller action AFTER the `//`). ```yml SilverStripe\Control\Director: rules: - 'admin/help//$Action/$ID: 'App\Control\AdminHelpController' + 'admin/help//$Action/$ID:' 'App\Control\AdminHelpController' ``` ### Wildcard URL patterns From a9bcefff22c724b943081a36edf0753bbd658eea Mon Sep 17 00:00:00 2001 From: Chris Lock Date: Fri, 1 Nov 2024 18:24:39 +0000 Subject: [PATCH 2/4] DOC Fixing the URL for React Dev tools --- .../08_ReactJS_Redux_and_GraphQL.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/en/02_Developer_Guides/15_Customising_the_Admin_Interface/08_ReactJS_Redux_and_GraphQL.md b/en/02_Developer_Guides/15_Customising_the_Admin_Interface/08_ReactJS_Redux_and_GraphQL.md index 2c32996f5..e73d13c82 100644 --- a/en/02_Developer_Guides/15_Customising_the_Admin_Interface/08_ReactJS_Redux_and_GraphQL.md +++ b/en/02_Developer_Guides/15_Customising_the_Admin_Interface/08_ReactJS_Redux_and_GraphQL.md @@ -60,7 +60,7 @@ to the React API. While optional, it is recommended to express components this w ### Recommended: react dev tools -The [React Dev Tools](https://chrome.g.oogle.com/webstore/detail/react-developer-tools/fmkadmapgofadopljbjfkapdkoienihi?hl=en) extension available for Chrome and Firefox is critical to debugging a React UI. It will let you browse the React UI much like the DOM, showing the tree of rendered components and their current props and state in real time. +The React Dev Tools extension available for [Chrome](https://chrome.google.com/webstore/detail/react-developer-tools/fmkadmapgofadopljbjfkapdkoienihi?hl=en) and [Firefox](https://addons.mozilla.org/en-GB/firefox/addon/react-devtools/) is critical to debugging a React UI. It will let you browse the React UI much like the DOM, showing the tree of rendered components and their current props and state in real time. ## Redux From 7263e714b42b0f141bdc41e5813777ca705b2692 Mon Sep 17 00:00:00 2001 From: Chris Lock Date: Mon, 4 Nov 2024 10:21:10 +0000 Subject: [PATCH 3/4] DOC fixing the bad placement of quote --- en/02_Developer_Guides/02_Controllers/02_Routing.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/en/02_Developer_Guides/02_Controllers/02_Routing.md b/en/02_Developer_Guides/02_Controllers/02_Routing.md index f780ed99a..a52b95513 100644 --- a/en/02_Developer_Guides/02_Controllers/02_Routing.md +++ b/en/02_Developer_Guides/02_Controllers/02_Routing.md @@ -201,7 +201,7 @@ start parsing variables and the appropriate controller action AFTER the `//`). ```yml SilverStripe\Control\Director: rules: - 'admin/help//$Action/$ID:' 'App\Control\AdminHelpController' + 'admin/help//$Action/$ID': 'App\Control\AdminHelpController' ``` ### Wildcard URL patterns From fd06b8462cf5a3a5fc4e7ab61c9592f16e2e8e7c Mon Sep 17 00:00:00 2001 From: Chris Lock Date: Mon, 4 Nov 2024 10:24:58 +0000 Subject: [PATCH 4/4] DOC Updated using suggested changes --- .../08_ReactJS_Redux_and_GraphQL.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/en/02_Developer_Guides/15_Customising_the_Admin_Interface/08_ReactJS_Redux_and_GraphQL.md b/en/02_Developer_Guides/15_Customising_the_Admin_Interface/08_ReactJS_Redux_and_GraphQL.md index e73d13c82..97acc9b1c 100644 --- a/en/02_Developer_Guides/15_Customising_the_Admin_Interface/08_ReactJS_Redux_and_GraphQL.md +++ b/en/02_Developer_Guides/15_Customising_the_Admin_Interface/08_ReactJS_Redux_and_GraphQL.md @@ -60,7 +60,7 @@ to the React API. While optional, it is recommended to express components this w ### Recommended: react dev tools -The React Dev Tools extension available for [Chrome](https://chrome.google.com/webstore/detail/react-developer-tools/fmkadmapgofadopljbjfkapdkoienihi?hl=en) and [Firefox](https://addons.mozilla.org/en-GB/firefox/addon/react-devtools/) is critical to debugging a React UI. It will let you browse the React UI much like the DOM, showing the tree of rendered components and their current props and state in real time. +The React Dev Tools extension [available for Chrome](https://chrome.google.com/webstore/detail/react-developer-tools/fmkadmapgofadopljbjfkapdkoienihi?hl=en) [and for Firefox](https://addons.mozilla.org/en-GB/firefox/addon/react-devtools/) is critical to debugging a React UI. It will let you browse the React UI much like the DOM, showing the tree of rendered components and their current props and state in real time. ## Redux