From c390a21611a7d8a8a4e20d9f70946f2b48cf661b Mon Sep 17 00:00:00 2001 From: Luccas Mateus de Medeiros Gomes Date: Fri, 5 May 2023 09:54:16 -0300 Subject: [PATCH] [docs][sm] - fix typo --- site/content/docs/index.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/site/content/docs/index.md b/site/content/docs/index.md index 38e44ed5..9bd350c3 100644 --- a/site/content/docs/index.md +++ b/site/content/docs/index.md @@ -168,12 +168,12 @@ Any frontmatter attribute that you add will automatically get indexed and be usa ### Adding filters -Sometimes contextual search is not enough. Let's add a filter. To do so, lets add a new metadata field called "groups", add it to your `content/my-incredible-dataset/index.md` like so: +Sometimes contextual search is not enough. Let's add a filter. To do so, lets add a new metadata field called "group", add it to your `content/my-incredible-dataset/index.md` like so: ``` --- -groups: ['Incredible'] +group: 'Incredible' --- # My Incredible Dataset @@ -195,7 +195,7 @@ Also add it to your `content/my-awesome-dataset/index.md` like so: ``` --- title: 'My awesome dataset' -groups: ['Awesome'] +group: 'Awesome' --- # My Awesome Dataset @@ -214,7 +214,7 @@ Now on your `content/index.md` you can add a "facet" to the `Catalog` component, List of available datasets: - + ``` You now have a filter in your page with all possible values automatically added to it.