From ccf10f716c9dc2bb4716a3ef6250aba626fa9c4a Mon Sep 17 00:00:00 2001 From: Johan Frick Date: Sun, 29 Oct 2023 23:45:03 +0100 Subject: [PATCH] Fix Home View Options documentation (#80) The code for hiding sections in the home view is case sensitive, so none of the options in the README worked. Also, the option for the areas title was missing an 's'. --- README.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 667a4b6..a7c62ff 100644 --- a/README.md +++ b/README.md @@ -355,11 +355,11 @@ Home View options will let you configure the Home View. #### hidden The following elements are supported: -* Chips -* Persons -* Greeting -* AreaTitle -* Areas +* chips +* persons +* greeting +* areasTitle +* areas #### Example @@ -369,8 +369,8 @@ strategy: options: homeView: hidden: - - Greeting - - AreaTitle + - greeting + - areasTitle views: [] ```