From 2352f8dca33997d2b03f2d430cf968446eadff67 Mon Sep 17 00:00:00 2001 From: Onkar Ruikar <87750369+OnkarRuikar@users.noreply.github.com> Date: Wed, 18 Jan 2023 17:29:47 +0530 Subject: [PATCH] docs(docs-infra): in navigation put prerequisites page 'guide/property-binding' before 'guide/attribute-binding' (#48766) Pages 'https://angular.io/guide/attribute-binding' and 'https://angular.io/guide/class-binding' have prerequisite of 'https://angular.io/guide/property-binding' but in navigation the property binding page comes much later. The change puts the binding pages in prerequisite order. PR Close #48766 --- aio/content/navigation.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/aio/content/navigation.json b/aio/content/navigation.json index 43b040d143e..06568bf7c1d 100644 --- a/aio/content/navigation.json +++ b/aio/content/navigation.json @@ -183,6 +183,11 @@ "title": "Understanding binding", "tooltip": "Introductory guide to binding." }, + { + "url": "guide/property-binding", + "title": "Property binding", + "tooltip": "Learn how to use property binding." + }, { "url": "guide/attribute-binding", "title": "Attribute binding", @@ -198,11 +203,6 @@ "title": "Event binding", "tooltip": "Learn how to use to event binding." }, - { - "url": "guide/property-binding", - "title": "Property binding", - "tooltip": "Learn how to use property binding." - }, { "url": "guide/two-way-binding", "title": "Two-way binding",